Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * originally based on the dummy device. |
| 3 | * |
| 4 | * Copyright 1999, Thomas Davis, tadavis@lbl.gov. |
| 5 | * Licensed under the GPL. Based on dummy.c, and eql.c devices. |
| 6 | * |
| 7 | * bonding.c: an Ethernet Bonding driver |
| 8 | * |
| 9 | * This is useful to talk to a Cisco EtherChannel compatible equipment: |
| 10 | * Cisco 5500 |
| 11 | * Sun Trunking (Solaris) |
| 12 | * Alteon AceDirector Trunks |
| 13 | * Linux Bonding |
| 14 | * and probably many L2 switches ... |
| 15 | * |
| 16 | * How it works: |
| 17 | * ifconfig bond0 ipaddress netmask up |
| 18 | * will setup a network device, with an ip address. No mac address |
| 19 | * will be assigned at this time. The hw mac address will come from |
| 20 | * the first slave bonded to the channel. All slaves will then use |
| 21 | * this hw mac address. |
| 22 | * |
| 23 | * ifconfig bond0 down |
| 24 | * will release all slaves, marking them as down. |
| 25 | * |
| 26 | * ifenslave bond0 eth0 |
| 27 | * will attach eth0 to bond0 as a slave. eth0 hw mac address will either |
| 28 | * a: be used as initial mac address |
| 29 | * b: if a hw mac address already is there, eth0's hw mac address |
| 30 | * will then be set from bond0. |
| 31 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | */ |
| 33 | |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 34 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <linux/kernel.h> |
| 37 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <linux/types.h> |
| 39 | #include <linux/fcntl.h> |
| 40 | #include <linux/interrupt.h> |
| 41 | #include <linux/ptrace.h> |
| 42 | #include <linux/ioport.h> |
| 43 | #include <linux/in.h> |
Jay Vosburgh | 169a3e6 | 2005-06-26 17:54:11 -0400 | [diff] [blame] | 44 | #include <net/ip.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <linux/ip.h> |
Jay Vosburgh | 169a3e6 | 2005-06-26 17:54:11 -0400 | [diff] [blame] | 46 | #include <linux/tcp.h> |
| 47 | #include <linux/udp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #include <linux/slab.h> |
| 49 | #include <linux/string.h> |
| 50 | #include <linux/init.h> |
| 51 | #include <linux/timer.h> |
| 52 | #include <linux/socket.h> |
| 53 | #include <linux/ctype.h> |
| 54 | #include <linux/inet.h> |
| 55 | #include <linux/bitops.h> |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 56 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #include <asm/system.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | #include <asm/dma.h> |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 59 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | #include <linux/errno.h> |
| 61 | #include <linux/netdevice.h> |
| 62 | #include <linux/inetdevice.h> |
Jay Vosburgh | a816c7c | 2007-02-28 17:03:37 -0800 | [diff] [blame] | 63 | #include <linux/igmp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | #include <linux/etherdevice.h> |
| 65 | #include <linux/skbuff.h> |
| 66 | #include <net/sock.h> |
| 67 | #include <linux/rtnetlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | #include <linux/smp.h> |
| 69 | #include <linux/if_ether.h> |
| 70 | #include <net/arp.h> |
| 71 | #include <linux/mii.h> |
| 72 | #include <linux/ethtool.h> |
| 73 | #include <linux/if_vlan.h> |
| 74 | #include <linux/if_bonding.h> |
David Sterba | b63bb73 | 2007-12-06 23:40:33 -0800 | [diff] [blame] | 75 | #include <linux/jiffies.h> |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 76 | #include <linux/preempt.h> |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 77 | #include <net/route.h> |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 78 | #include <net/net_namespace.h> |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 79 | #include <net/netns/generic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | #include "bonding.h" |
| 81 | #include "bond_3ad.h" |
| 82 | #include "bond_alb.h" |
| 83 | |
| 84 | /*---------------------------- Module parameters ----------------------------*/ |
| 85 | |
| 86 | /* monitor all links that often (in milliseconds). <=0 disables monitoring */ |
| 87 | #define BOND_LINK_MON_INTERV 0 |
| 88 | #define BOND_LINK_ARP_INTERV 0 |
| 89 | |
| 90 | static int max_bonds = BOND_DEFAULT_MAX_BONDS; |
Andy Gospodarek | bb1d912 | 2010-06-02 08:40:18 +0000 | [diff] [blame] | 91 | static int tx_queues = BOND_DEFAULT_TX_QUEUES; |
Ben Hutchings | ad246c9 | 2011-04-26 15:25:52 +0000 | [diff] [blame] | 92 | static int num_peer_notif = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | static int miimon = BOND_LINK_MON_INTERV; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 94 | static int updelay; |
| 95 | static int downdelay; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | static int use_carrier = 1; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 97 | static char *mode; |
| 98 | static char *primary; |
Jiri Pirko | a549952 | 2009-09-25 03:28:09 +0000 | [diff] [blame] | 99 | static char *primary_reselect; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 100 | static char *lacp_rate; |
| 101 | static char *ad_select; |
| 102 | static char *xmit_hash_policy; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | static int arp_interval = BOND_LINK_ARP_INTERV; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 104 | static char *arp_ip_target[BOND_MAX_ARP_TARGETS]; |
| 105 | static char *arp_validate; |
| 106 | static char *fail_over_mac; |
Andy Gospodarek | ebd8e49 | 2010-06-02 08:39:21 +0000 | [diff] [blame] | 107 | static int all_slaves_active = 0; |
Stephen Hemminger | d2991f7 | 2009-06-12 19:02:44 +0000 | [diff] [blame] | 108 | static struct bond_params bonding_defaults; |
Flavio Leitner | c2952c3 | 2010-10-05 14:23:59 +0000 | [diff] [blame] | 109 | static int resend_igmp = BOND_DEFAULT_RESEND_IGMP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
| 111 | module_param(max_bonds, int, 0); |
| 112 | MODULE_PARM_DESC(max_bonds, "Max number of bonded devices"); |
Andy Gospodarek | bb1d912 | 2010-06-02 08:40:18 +0000 | [diff] [blame] | 113 | module_param(tx_queues, int, 0); |
| 114 | MODULE_PARM_DESC(tx_queues, "Max number of transmit queues (default = 16)"); |
Ben Hutchings | ad246c9 | 2011-04-26 15:25:52 +0000 | [diff] [blame] | 115 | module_param_named(num_grat_arp, num_peer_notif, int, 0644); |
| 116 | MODULE_PARM_DESC(num_grat_arp, "Number of peer notifications to send on failover event (alias of num_unsol_na)"); |
| 117 | module_param_named(num_unsol_na, num_peer_notif, int, 0644); |
| 118 | MODULE_PARM_DESC(num_unsol_na, "Number of peer notifications to send on failover event (alias of num_grat_arp)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | module_param(miimon, int, 0); |
| 120 | MODULE_PARM_DESC(miimon, "Link check interval in milliseconds"); |
| 121 | module_param(updelay, int, 0); |
| 122 | MODULE_PARM_DESC(updelay, "Delay before considering link up, in milliseconds"); |
| 123 | module_param(downdelay, int, 0); |
Mitch Williams | 2ac4766 | 2005-11-09 10:35:03 -0800 | [diff] [blame] | 124 | MODULE_PARM_DESC(downdelay, "Delay before considering link down, " |
| 125 | "in milliseconds"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | module_param(use_carrier, int, 0); |
Mitch Williams | 2ac4766 | 2005-11-09 10:35:03 -0800 | [diff] [blame] | 127 | MODULE_PARM_DESC(use_carrier, "Use netif_carrier_ok (vs MII ioctls) in miimon; " |
| 128 | "0 for off, 1 for on (default)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | module_param(mode, charp, 0); |
Mitch Williams | 2ac4766 | 2005-11-09 10:35:03 -0800 | [diff] [blame] | 130 | MODULE_PARM_DESC(mode, "Mode of operation : 0 for balance-rr, " |
| 131 | "1 for active-backup, 2 for balance-xor, " |
| 132 | "3 for broadcast, 4 for 802.3ad, 5 for balance-tlb, " |
| 133 | "6 for balance-alb"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | module_param(primary, charp, 0); |
| 135 | MODULE_PARM_DESC(primary, "Primary network device to use"); |
Jiri Pirko | a549952 | 2009-09-25 03:28:09 +0000 | [diff] [blame] | 136 | module_param(primary_reselect, charp, 0); |
| 137 | MODULE_PARM_DESC(primary_reselect, "Reselect primary slave " |
| 138 | "once it comes up; " |
| 139 | "0 for always (default), " |
| 140 | "1 for only if speed of primary is " |
| 141 | "better, " |
| 142 | "2 for only on active slave " |
| 143 | "failure"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | module_param(lacp_rate, charp, 0); |
Mitch Williams | 2ac4766 | 2005-11-09 10:35:03 -0800 | [diff] [blame] | 145 | MODULE_PARM_DESC(lacp_rate, "LACPDU tx rate to request from 802.3ad partner " |
| 146 | "(slow/fast)"); |
Jay Vosburgh | fd989c8 | 2008-11-04 17:51:16 -0800 | [diff] [blame] | 147 | module_param(ad_select, charp, 0); |
| 148 | MODULE_PARM_DESC(ad_select, "803.ad aggregation selection logic: stable (0, default), bandwidth (1), count (2)"); |
Jay Vosburgh | 169a3e6 | 2005-06-26 17:54:11 -0400 | [diff] [blame] | 149 | module_param(xmit_hash_policy, charp, 0); |
Mitch Williams | 2ac4766 | 2005-11-09 10:35:03 -0800 | [diff] [blame] | 150 | MODULE_PARM_DESC(xmit_hash_policy, "XOR hashing method: 0 for layer 2 (default)" |
| 151 | ", 1 for layer 3+4"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | module_param(arp_interval, int, 0); |
| 153 | MODULE_PARM_DESC(arp_interval, "arp interval in milliseconds"); |
| 154 | module_param_array(arp_ip_target, charp, NULL, 0); |
| 155 | MODULE_PARM_DESC(arp_ip_target, "arp targets in n.n.n.n form"); |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 156 | module_param(arp_validate, charp, 0); |
| 157 | MODULE_PARM_DESC(arp_validate, "validate src/dst of ARP probes: none (default), active, backup or all"); |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 158 | module_param(fail_over_mac, charp, 0); |
| 159 | MODULE_PARM_DESC(fail_over_mac, "For active-backup, do not set all slaves to the same MAC. none (default), active or follow"); |
Andy Gospodarek | ebd8e49 | 2010-06-02 08:39:21 +0000 | [diff] [blame] | 160 | module_param(all_slaves_active, int, 0); |
| 161 | MODULE_PARM_DESC(all_slaves_active, "Keep all frames received on an interface" |
| 162 | "by setting active flag for all slaves. " |
| 163 | "0 for never (default), 1 for always."); |
Flavio Leitner | c2952c3 | 2010-10-05 14:23:59 +0000 | [diff] [blame] | 164 | module_param(resend_igmp, int, 0); |
| 165 | MODULE_PARM_DESC(resend_igmp, "Number of IGMP membership reports to send on link failure"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | |
| 167 | /*----------------------------- Global variables ----------------------------*/ |
| 168 | |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 169 | #ifdef CONFIG_NET_POLL_CONTROLLER |
Neil Horman | fb4fa76 | 2010-12-06 09:05:50 +0000 | [diff] [blame] | 170 | atomic_t netpoll_block_tx = ATOMIC_INIT(0); |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 171 | #endif |
| 172 | |
Eric Dumazet | f99189b | 2009-11-17 10:42:49 +0000 | [diff] [blame] | 173 | int bond_net_id __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 175 | static __be32 arp_target[BOND_MAX_ARP_TARGETS]; |
| 176 | static int arp_ip_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | static int bond_mode = BOND_MODE_ROUNDROBIN; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 178 | static int xmit_hashtype = BOND_XMIT_POLICY_LAYER2; |
| 179 | static int lacp_fast; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
Holger Eitzenberger | e97fd7c | 2008-12-09 23:10:38 -0800 | [diff] [blame] | 181 | const struct bond_parm_tbl bond_lacp_tbl[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | { "slow", AD_LACP_SLOW}, |
| 183 | { "fast", AD_LACP_FAST}, |
| 184 | { NULL, -1}, |
| 185 | }; |
| 186 | |
Holger Eitzenberger | e97fd7c | 2008-12-09 23:10:38 -0800 | [diff] [blame] | 187 | const struct bond_parm_tbl bond_mode_tbl[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | { "balance-rr", BOND_MODE_ROUNDROBIN}, |
| 189 | { "active-backup", BOND_MODE_ACTIVEBACKUP}, |
| 190 | { "balance-xor", BOND_MODE_XOR}, |
| 191 | { "broadcast", BOND_MODE_BROADCAST}, |
| 192 | { "802.3ad", BOND_MODE_8023AD}, |
| 193 | { "balance-tlb", BOND_MODE_TLB}, |
| 194 | { "balance-alb", BOND_MODE_ALB}, |
| 195 | { NULL, -1}, |
| 196 | }; |
| 197 | |
Holger Eitzenberger | e97fd7c | 2008-12-09 23:10:38 -0800 | [diff] [blame] | 198 | const struct bond_parm_tbl xmit_hashtype_tbl[] = { |
Jay Vosburgh | 169a3e6 | 2005-06-26 17:54:11 -0400 | [diff] [blame] | 199 | { "layer2", BOND_XMIT_POLICY_LAYER2}, |
| 200 | { "layer3+4", BOND_XMIT_POLICY_LAYER34}, |
Jay Vosburgh | 6f6652b | 2007-12-06 23:40:34 -0800 | [diff] [blame] | 201 | { "layer2+3", BOND_XMIT_POLICY_LAYER23}, |
Jay Vosburgh | 169a3e6 | 2005-06-26 17:54:11 -0400 | [diff] [blame] | 202 | { NULL, -1}, |
| 203 | }; |
| 204 | |
Holger Eitzenberger | e97fd7c | 2008-12-09 23:10:38 -0800 | [diff] [blame] | 205 | const struct bond_parm_tbl arp_validate_tbl[] = { |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 206 | { "none", BOND_ARP_VALIDATE_NONE}, |
| 207 | { "active", BOND_ARP_VALIDATE_ACTIVE}, |
| 208 | { "backup", BOND_ARP_VALIDATE_BACKUP}, |
| 209 | { "all", BOND_ARP_VALIDATE_ALL}, |
| 210 | { NULL, -1}, |
| 211 | }; |
| 212 | |
Holger Eitzenberger | e97fd7c | 2008-12-09 23:10:38 -0800 | [diff] [blame] | 213 | const struct bond_parm_tbl fail_over_mac_tbl[] = { |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 214 | { "none", BOND_FOM_NONE}, |
| 215 | { "active", BOND_FOM_ACTIVE}, |
| 216 | { "follow", BOND_FOM_FOLLOW}, |
| 217 | { NULL, -1}, |
| 218 | }; |
| 219 | |
Jiri Pirko | a549952 | 2009-09-25 03:28:09 +0000 | [diff] [blame] | 220 | const struct bond_parm_tbl pri_reselect_tbl[] = { |
| 221 | { "always", BOND_PRI_RESELECT_ALWAYS}, |
| 222 | { "better", BOND_PRI_RESELECT_BETTER}, |
| 223 | { "failure", BOND_PRI_RESELECT_FAILURE}, |
| 224 | { NULL, -1}, |
| 225 | }; |
| 226 | |
Jay Vosburgh | fd989c8 | 2008-11-04 17:51:16 -0800 | [diff] [blame] | 227 | struct bond_parm_tbl ad_select_tbl[] = { |
| 228 | { "stable", BOND_AD_STABLE}, |
| 229 | { "bandwidth", BOND_AD_BANDWIDTH}, |
| 230 | { "count", BOND_AD_COUNT}, |
| 231 | { NULL, -1}, |
| 232 | }; |
| 233 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | /*-------------------------- Forward declarations ---------------------------*/ |
| 235 | |
Stephen Hemminger | 181470f | 2009-06-12 19:02:52 +0000 | [diff] [blame] | 236 | static int bond_init(struct net_device *bond_dev); |
Eric W. Biederman | c67dfb2 | 2009-10-29 14:18:24 +0000 | [diff] [blame] | 237 | static void bond_uninit(struct net_device *bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | |
| 239 | /*---------------------------- General routines -----------------------------*/ |
| 240 | |
Amerigo Wang | bd33acc | 2011-03-06 21:58:46 +0000 | [diff] [blame] | 241 | const char *bond_mode_name(int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | { |
Holger Eitzenberger | 77afc92 | 2008-12-09 23:08:09 -0800 | [diff] [blame] | 243 | static const char *names[] = { |
| 244 | [BOND_MODE_ROUNDROBIN] = "load balancing (round-robin)", |
| 245 | [BOND_MODE_ACTIVEBACKUP] = "fault-tolerance (active-backup)", |
| 246 | [BOND_MODE_XOR] = "load balancing (xor)", |
| 247 | [BOND_MODE_BROADCAST] = "fault-tolerance (broadcast)", |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 248 | [BOND_MODE_8023AD] = "IEEE 802.3ad Dynamic link aggregation", |
Holger Eitzenberger | 77afc92 | 2008-12-09 23:08:09 -0800 | [diff] [blame] | 249 | [BOND_MODE_TLB] = "transmit load balancing", |
| 250 | [BOND_MODE_ALB] = "adaptive load balancing", |
| 251 | }; |
| 252 | |
| 253 | if (mode < 0 || mode > BOND_MODE_ALB) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | return "unknown"; |
Holger Eitzenberger | 77afc92 | 2008-12-09 23:08:09 -0800 | [diff] [blame] | 255 | |
| 256 | return names[mode]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | /*---------------------------------- VLAN -----------------------------------*/ |
| 260 | |
| 261 | /** |
| 262 | * bond_add_vlan - add a new vlan id on bond |
| 263 | * @bond: bond that got the notification |
| 264 | * @vlan_id: the vlan id to add |
| 265 | * |
| 266 | * Returns -ENOMEM if allocation failed. |
| 267 | */ |
| 268 | static int bond_add_vlan(struct bonding *bond, unsigned short vlan_id) |
| 269 | { |
| 270 | struct vlan_entry *vlan; |
| 271 | |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 272 | pr_debug("bond: %s, vlan id %d\n", |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 273 | (bond ? bond->dev->name : "None"), vlan_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | |
Brian Haley | 305d552 | 2008-11-04 17:51:14 -0800 | [diff] [blame] | 275 | vlan = kzalloc(sizeof(struct vlan_entry), GFP_KERNEL); |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 276 | if (!vlan) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | |
| 279 | INIT_LIST_HEAD(&vlan->vlan_list); |
| 280 | vlan->vlan_id = vlan_id; |
| 281 | |
| 282 | write_lock_bh(&bond->lock); |
| 283 | |
| 284 | list_add_tail(&vlan->vlan_list, &bond->vlan_list); |
| 285 | |
| 286 | write_unlock_bh(&bond->lock); |
| 287 | |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 288 | pr_debug("added VLAN ID %d on bond %s\n", vlan_id, bond->dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | |
| 290 | return 0; |
| 291 | } |
| 292 | |
| 293 | /** |
| 294 | * bond_del_vlan - delete a vlan id from bond |
| 295 | * @bond: bond that got the notification |
| 296 | * @vlan_id: the vlan id to delete |
| 297 | * |
| 298 | * returns -ENODEV if @vlan_id was not found in @bond. |
| 299 | */ |
| 300 | static int bond_del_vlan(struct bonding *bond, unsigned short vlan_id) |
| 301 | { |
Pavel Emelyanov | 0883bec | 2008-05-17 21:10:10 -0700 | [diff] [blame] | 302 | struct vlan_entry *vlan; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | int res = -ENODEV; |
| 304 | |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 305 | pr_debug("bond: %s, vlan id %d\n", bond->dev->name, vlan_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 307 | block_netpoll_tx(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | write_lock_bh(&bond->lock); |
| 309 | |
Pavel Emelyanov | 0883bec | 2008-05-17 21:10:10 -0700 | [diff] [blame] | 310 | list_for_each_entry(vlan, &bond->vlan_list, vlan_list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | if (vlan->vlan_id == vlan_id) { |
| 312 | list_del(&vlan->vlan_list); |
| 313 | |
Holger Eitzenberger | 5840205 | 2008-12-09 23:07:13 -0800 | [diff] [blame] | 314 | if (bond_is_lb(bond)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | bond_alb_clear_vlan(bond, vlan_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 317 | pr_debug("removed VLAN ID %d from bond %s\n", |
| 318 | vlan_id, bond->dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | |
| 320 | kfree(vlan); |
| 321 | |
| 322 | if (list_empty(&bond->vlan_list) && |
| 323 | (bond->slave_cnt == 0)) { |
| 324 | /* Last VLAN removed and no slaves, so |
| 325 | * restore block on adding VLANs. This will |
| 326 | * be removed once new slaves that are not |
| 327 | * VLAN challenged will be added. |
| 328 | */ |
| 329 | bond->dev->features |= NETIF_F_VLAN_CHALLENGED; |
| 330 | } |
| 331 | |
| 332 | res = 0; |
| 333 | goto out; |
| 334 | } |
| 335 | } |
| 336 | |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 337 | pr_debug("couldn't find VLAN ID %d in bond %s\n", |
| 338 | vlan_id, bond->dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | |
| 340 | out: |
| 341 | write_unlock_bh(&bond->lock); |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 342 | unblock_netpoll_tx(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | return res; |
| 344 | } |
| 345 | |
| 346 | /** |
| 347 | * bond_has_challenged_slaves |
| 348 | * @bond: the bond we're working on |
| 349 | * |
| 350 | * Searches the slave list. Returns 1 if a vlan challenged slave |
| 351 | * was found, 0 otherwise. |
| 352 | * |
| 353 | * Assumes bond->lock is held. |
| 354 | */ |
| 355 | static int bond_has_challenged_slaves(struct bonding *bond) |
| 356 | { |
| 357 | struct slave *slave; |
| 358 | int i; |
| 359 | |
| 360 | bond_for_each_slave(bond, slave, i) { |
| 361 | if (slave->dev->features & NETIF_F_VLAN_CHALLENGED) { |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 362 | pr_debug("found VLAN challenged slave - %s\n", |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 363 | slave->dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | return 1; |
| 365 | } |
| 366 | } |
| 367 | |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 368 | pr_debug("no VLAN challenged slaves found\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | return 0; |
| 370 | } |
| 371 | |
| 372 | /** |
| 373 | * bond_next_vlan - safely skip to the next item in the vlans list. |
| 374 | * @bond: the bond we're working on |
| 375 | * @curr: item we're advancing from |
| 376 | * |
| 377 | * Returns %NULL if list is empty, bond->next_vlan if @curr is %NULL, |
| 378 | * or @curr->next otherwise (even if it is @curr itself again). |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 379 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | * Caller must hold bond->lock |
| 381 | */ |
| 382 | struct vlan_entry *bond_next_vlan(struct bonding *bond, struct vlan_entry *curr) |
| 383 | { |
| 384 | struct vlan_entry *next, *last; |
| 385 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 386 | if (list_empty(&bond->vlan_list)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | |
| 389 | if (!curr) { |
| 390 | next = list_entry(bond->vlan_list.next, |
| 391 | struct vlan_entry, vlan_list); |
| 392 | } else { |
| 393 | last = list_entry(bond->vlan_list.prev, |
| 394 | struct vlan_entry, vlan_list); |
| 395 | if (last == curr) { |
| 396 | next = list_entry(bond->vlan_list.next, |
| 397 | struct vlan_entry, vlan_list); |
| 398 | } else { |
| 399 | next = list_entry(curr->vlan_list.next, |
| 400 | struct vlan_entry, vlan_list); |
| 401 | } |
| 402 | } |
| 403 | |
| 404 | return next; |
| 405 | } |
| 406 | |
| 407 | /** |
| 408 | * bond_dev_queue_xmit - Prepare skb for xmit. |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 409 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | * @bond: bond device that got this skb for tx. |
| 411 | * @skb: hw accel VLAN tagged skb to transmit |
| 412 | * @slave_dev: slave that is supposed to xmit this skbuff |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 414 | int bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb, |
| 415 | struct net_device *slave_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | { |
Ben Hutchings | 8387451 | 2010-12-13 08:19:28 +0000 | [diff] [blame] | 417 | skb->dev = slave_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | skb->priority = 1; |
Amerigo Wang | 080e413 | 2011-02-17 23:43:33 +0000 | [diff] [blame] | 419 | if (unlikely(netpoll_tx_running(slave_dev))) |
Amerigo Wang | 8a8efa2 | 2011-02-17 23:43:32 +0000 | [diff] [blame] | 420 | bond_netpoll_send_skb(bond_get_slave_by_dev(bond, slave_dev), skb); |
Amerigo Wang | 080e413 | 2011-02-17 23:43:33 +0000 | [diff] [blame] | 421 | else |
WANG Cong | f6dc31a | 2010-05-06 00:48:51 -0700 | [diff] [blame] | 422 | dev_queue_xmit(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | |
| 424 | return 0; |
| 425 | } |
| 426 | |
| 427 | /* |
| 428 | * In the following 3 functions, bond_vlan_rx_register(), bond_vlan_rx_add_vid |
| 429 | * and bond_vlan_rx_kill_vid, We don't protect the slave list iteration with a |
| 430 | * lock because: |
| 431 | * a. This operation is performed in IOCTL context, |
| 432 | * b. The operation is protected by the RTNL semaphore in the 8021q code, |
| 433 | * c. Holding a lock with BH disabled while directly calling a base driver |
| 434 | * entry point is generally a BAD idea. |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 435 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | * The design of synchronization/protection for this operation in the 8021q |
| 437 | * module is good for one or more VLAN devices over a single physical device |
| 438 | * and cannot be extended for a teaming solution like bonding, so there is a |
| 439 | * potential race condition here where a net device from the vlan group might |
| 440 | * be referenced (either by a base driver or the 8021q code) while it is being |
| 441 | * removed from the system. However, it turns out we're not making matters |
| 442 | * worse, and if it works for regular VLAN usage it will work here too. |
| 443 | */ |
| 444 | |
| 445 | /** |
| 446 | * bond_vlan_rx_register - Propagates registration to slaves |
| 447 | * @bond_dev: bonding net device that got called |
| 448 | * @grp: vlan group being registered |
| 449 | */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 450 | static void bond_vlan_rx_register(struct net_device *bond_dev, |
| 451 | struct vlan_group *grp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 453 | struct bonding *bond = netdev_priv(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | struct slave *slave; |
| 455 | int i; |
| 456 | |
Jarek Poplawski | a71fb88 | 2010-10-27 07:08:22 +0000 | [diff] [blame] | 457 | write_lock_bh(&bond->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | bond->vlgrp = grp; |
Jarek Poplawski | a71fb88 | 2010-10-27 07:08:22 +0000 | [diff] [blame] | 459 | write_unlock_bh(&bond->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | |
| 461 | bond_for_each_slave(bond, slave, i) { |
| 462 | struct net_device *slave_dev = slave->dev; |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 463 | const struct net_device_ops *slave_ops = slave_dev->netdev_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | |
| 465 | if ((slave_dev->features & NETIF_F_HW_VLAN_RX) && |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 466 | slave_ops->ndo_vlan_rx_register) { |
| 467 | slave_ops->ndo_vlan_rx_register(slave_dev, grp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | } |
| 469 | } |
| 470 | } |
| 471 | |
| 472 | /** |
| 473 | * bond_vlan_rx_add_vid - Propagates adding an id to slaves |
| 474 | * @bond_dev: bonding net device that got called |
| 475 | * @vid: vlan id being added |
| 476 | */ |
| 477 | static void bond_vlan_rx_add_vid(struct net_device *bond_dev, uint16_t vid) |
| 478 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 479 | struct bonding *bond = netdev_priv(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | struct slave *slave; |
| 481 | int i, res; |
| 482 | |
| 483 | bond_for_each_slave(bond, slave, i) { |
| 484 | struct net_device *slave_dev = slave->dev; |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 485 | const struct net_device_ops *slave_ops = slave_dev->netdev_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | |
| 487 | if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) && |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 488 | slave_ops->ndo_vlan_rx_add_vid) { |
| 489 | slave_ops->ndo_vlan_rx_add_vid(slave_dev, vid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | } |
| 491 | } |
| 492 | |
| 493 | res = bond_add_vlan(bond, vid); |
| 494 | if (res) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 495 | pr_err("%s: Error: Failed to add vlan id %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | bond_dev->name, vid); |
| 497 | } |
| 498 | } |
| 499 | |
| 500 | /** |
| 501 | * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves |
| 502 | * @bond_dev: bonding net device that got called |
| 503 | * @vid: vlan id being removed |
| 504 | */ |
| 505 | static void bond_vlan_rx_kill_vid(struct net_device *bond_dev, uint16_t vid) |
| 506 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 507 | struct bonding *bond = netdev_priv(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | struct slave *slave; |
| 509 | struct net_device *vlan_dev; |
| 510 | int i, res; |
| 511 | |
| 512 | bond_for_each_slave(bond, slave, i) { |
| 513 | struct net_device *slave_dev = slave->dev; |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 514 | const struct net_device_ops *slave_ops = slave_dev->netdev_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | |
| 516 | if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) && |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 517 | slave_ops->ndo_vlan_rx_kill_vid) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | /* Save and then restore vlan_dev in the grp array, |
| 519 | * since the slave's driver might clear it. |
| 520 | */ |
Dan Aloni | 5c15bde | 2007-03-02 20:44:51 -0800 | [diff] [blame] | 521 | vlan_dev = vlan_group_get_device(bond->vlgrp, vid); |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 522 | slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vid); |
Dan Aloni | 5c15bde | 2007-03-02 20:44:51 -0800 | [diff] [blame] | 523 | vlan_group_set_device(bond->vlgrp, vid, vlan_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | } |
| 525 | } |
| 526 | |
| 527 | res = bond_del_vlan(bond, vid); |
| 528 | if (res) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 529 | pr_err("%s: Error: Failed to remove vlan id %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | bond_dev->name, vid); |
| 531 | } |
| 532 | } |
| 533 | |
| 534 | static void bond_add_vlans_on_slave(struct bonding *bond, struct net_device *slave_dev) |
| 535 | { |
| 536 | struct vlan_entry *vlan; |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 537 | const struct net_device_ops *slave_ops = slave_dev->netdev_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | |
Jay Vosburgh | f35188f | 2010-07-21 12:14:47 +0000 | [diff] [blame] | 539 | if (!bond->vlgrp) |
Jay Vosburgh | 03dc2f4 | 2010-07-21 12:14:48 +0000 | [diff] [blame] | 540 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | |
| 542 | if ((slave_dev->features & NETIF_F_HW_VLAN_RX) && |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 543 | slave_ops->ndo_vlan_rx_register) |
| 544 | slave_ops->ndo_vlan_rx_register(slave_dev, bond->vlgrp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | |
| 546 | if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) || |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 547 | !(slave_ops->ndo_vlan_rx_add_vid)) |
Jay Vosburgh | 03dc2f4 | 2010-07-21 12:14:48 +0000 | [diff] [blame] | 548 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 550 | list_for_each_entry(vlan, &bond->vlan_list, vlan_list) |
| 551 | slave_ops->ndo_vlan_rx_add_vid(slave_dev, vlan->vlan_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | } |
| 553 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 554 | static void bond_del_vlans_from_slave(struct bonding *bond, |
| 555 | struct net_device *slave_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | { |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 557 | const struct net_device_ops *slave_ops = slave_dev->netdev_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | struct vlan_entry *vlan; |
| 559 | struct net_device *vlan_dev; |
| 560 | |
Jay Vosburgh | f35188f | 2010-07-21 12:14:47 +0000 | [diff] [blame] | 561 | if (!bond->vlgrp) |
Jay Vosburgh | 03dc2f4 | 2010-07-21 12:14:48 +0000 | [diff] [blame] | 562 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | |
| 564 | if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) || |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 565 | !(slave_ops->ndo_vlan_rx_kill_vid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | goto unreg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | |
| 568 | list_for_each_entry(vlan, &bond->vlan_list, vlan_list) { |
Jay Vosburgh | f35188f | 2010-07-21 12:14:47 +0000 | [diff] [blame] | 569 | if (!vlan->vlan_id) |
| 570 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | /* Save and then restore vlan_dev in the grp array, |
| 572 | * since the slave's driver might clear it. |
| 573 | */ |
Dan Aloni | 5c15bde | 2007-03-02 20:44:51 -0800 | [diff] [blame] | 574 | vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id); |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 575 | slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vlan->vlan_id); |
Dan Aloni | 5c15bde | 2007-03-02 20:44:51 -0800 | [diff] [blame] | 576 | vlan_group_set_device(bond->vlgrp, vlan->vlan_id, vlan_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | } |
| 578 | |
| 579 | unreg: |
| 580 | if ((slave_dev->features & NETIF_F_HW_VLAN_RX) && |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 581 | slave_ops->ndo_vlan_rx_register) |
| 582 | slave_ops->ndo_vlan_rx_register(slave_dev, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | } |
| 584 | |
| 585 | /*------------------------------- Link status -------------------------------*/ |
| 586 | |
| 587 | /* |
Jay Vosburgh | ff59c45 | 2006-03-27 13:27:43 -0800 | [diff] [blame] | 588 | * Set the carrier state for the master according to the state of its |
| 589 | * slaves. If any slaves are up, the master is up. In 802.3ad mode, |
| 590 | * do special 802.3ad magic. |
| 591 | * |
| 592 | * Returns zero if carrier state does not change, nonzero if it does. |
| 593 | */ |
| 594 | static int bond_set_carrier(struct bonding *bond) |
| 595 | { |
| 596 | struct slave *slave; |
| 597 | int i; |
| 598 | |
| 599 | if (bond->slave_cnt == 0) |
| 600 | goto down; |
| 601 | |
| 602 | if (bond->params.mode == BOND_MODE_8023AD) |
| 603 | return bond_3ad_set_carrier(bond); |
| 604 | |
| 605 | bond_for_each_slave(bond, slave, i) { |
| 606 | if (slave->link == BOND_LINK_UP) { |
| 607 | if (!netif_carrier_ok(bond->dev)) { |
| 608 | netif_carrier_on(bond->dev); |
| 609 | return 1; |
| 610 | } |
| 611 | return 0; |
| 612 | } |
| 613 | } |
| 614 | |
| 615 | down: |
| 616 | if (netif_carrier_ok(bond->dev)) { |
| 617 | netif_carrier_off(bond->dev); |
| 618 | return 1; |
| 619 | } |
| 620 | return 0; |
| 621 | } |
| 622 | |
| 623 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | * Get link speed and duplex from the slave's base driver |
| 625 | * using ethtool. If for some reason the call fails or the |
| 626 | * values are invalid, fake speed and duplex to 100/Full |
| 627 | * and return error. |
| 628 | */ |
| 629 | static int bond_update_speed_duplex(struct slave *slave) |
| 630 | { |
| 631 | struct net_device *slave_dev = slave->dev; |
David Decotigny | 5d30530 | 2011-04-13 15:22:31 +0000 | [diff] [blame] | 632 | struct ethtool_cmd etool = { .cmd = ETHTOOL_GSET }; |
| 633 | u32 slave_speed; |
Matthew Wilcox | 61a44b9 | 2007-07-31 14:00:02 -0700 | [diff] [blame] | 634 | int res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | |
| 636 | /* Fake speed and duplex */ |
| 637 | slave->speed = SPEED_100; |
| 638 | slave->duplex = DUPLEX_FULL; |
| 639 | |
Matthew Wilcox | 61a44b9 | 2007-07-31 14:00:02 -0700 | [diff] [blame] | 640 | if (!slave_dev->ethtool_ops || !slave_dev->ethtool_ops->get_settings) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | |
Matthew Wilcox | 61a44b9 | 2007-07-31 14:00:02 -0700 | [diff] [blame] | 643 | res = slave_dev->ethtool_ops->get_settings(slave_dev, &etool); |
| 644 | if (res < 0) |
| 645 | return -1; |
| 646 | |
David Decotigny | 5d30530 | 2011-04-13 15:22:31 +0000 | [diff] [blame] | 647 | slave_speed = ethtool_cmd_speed(&etool); |
| 648 | switch (slave_speed) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | case SPEED_10: |
| 650 | case SPEED_100: |
| 651 | case SPEED_1000: |
Jay Vosburgh | 94dbffd | 2006-09-22 21:52:15 -0700 | [diff] [blame] | 652 | case SPEED_10000: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | break; |
| 654 | default: |
| 655 | return -1; |
| 656 | } |
| 657 | |
| 658 | switch (etool.duplex) { |
| 659 | case DUPLEX_FULL: |
| 660 | case DUPLEX_HALF: |
| 661 | break; |
| 662 | default: |
| 663 | return -1; |
| 664 | } |
| 665 | |
David Decotigny | 5d30530 | 2011-04-13 15:22:31 +0000 | [diff] [blame] | 666 | slave->speed = slave_speed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | slave->duplex = etool.duplex; |
| 668 | |
| 669 | return 0; |
| 670 | } |
| 671 | |
| 672 | /* |
| 673 | * if <dev> supports MII link status reporting, check its link status. |
| 674 | * |
| 675 | * We either do MII/ETHTOOL ioctls, or check netif_carrier_ok(), |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 676 | * depending upon the setting of the use_carrier parameter. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | * |
| 678 | * Return either BMSR_LSTATUS, meaning that the link is up (or we |
| 679 | * can't tell and just pretend it is), or 0, meaning that the link is |
| 680 | * down. |
| 681 | * |
| 682 | * If reporting is non-zero, instead of faking link up, return -1 if |
| 683 | * both ETHTOOL and MII ioctls fail (meaning the device does not |
| 684 | * support them). If use_carrier is set, return whatever it says. |
| 685 | * It'd be nice if there was a good way to tell if a driver supports |
| 686 | * netif_carrier, but there really isn't. |
| 687 | */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 688 | static int bond_check_dev_link(struct bonding *bond, |
| 689 | struct net_device *slave_dev, int reporting) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | { |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 691 | const struct net_device_ops *slave_ops = slave_dev->netdev_ops; |
Jiri Bohac | d9d5283 | 2009-10-28 22:23:54 -0700 | [diff] [blame] | 692 | int (*ioctl)(struct net_device *, struct ifreq *, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | struct ifreq ifr; |
| 694 | struct mii_ioctl_data *mii; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | |
Petri Gynther | 6c98885 | 2009-08-28 12:05:15 +0000 | [diff] [blame] | 696 | if (!reporting && !netif_running(slave_dev)) |
| 697 | return 0; |
| 698 | |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 699 | if (bond->params.use_carrier) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | return netif_carrier_ok(slave_dev) ? BMSR_LSTATUS : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | |
Jiri Pirko | 29112f4 | 2009-04-24 01:58:23 +0000 | [diff] [blame] | 702 | /* Try to get link status using Ethtool first. */ |
| 703 | if (slave_dev->ethtool_ops) { |
| 704 | if (slave_dev->ethtool_ops->get_link) { |
| 705 | u32 link; |
| 706 | |
| 707 | link = slave_dev->ethtool_ops->get_link(slave_dev); |
| 708 | |
| 709 | return link ? BMSR_LSTATUS : 0; |
| 710 | } |
| 711 | } |
| 712 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 713 | /* Ethtool can't be used, fallback to MII ioctls. */ |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 714 | ioctl = slave_ops->ndo_do_ioctl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | if (ioctl) { |
| 716 | /* TODO: set pointer to correct ioctl on a per team member */ |
| 717 | /* bases to make this more efficient. that is, once */ |
| 718 | /* we determine the correct ioctl, we will always */ |
| 719 | /* call it and not the others for that team */ |
| 720 | /* member. */ |
| 721 | |
| 722 | /* |
| 723 | * We cannot assume that SIOCGMIIPHY will also read a |
| 724 | * register; not all network drivers (e.g., e100) |
| 725 | * support that. |
| 726 | */ |
| 727 | |
| 728 | /* Yes, the mii is overlaid on the ifreq.ifr_ifru */ |
| 729 | strncpy(ifr.ifr_name, slave_dev->name, IFNAMSIZ); |
| 730 | mii = if_mii(&ifr); |
| 731 | if (IOCTL(slave_dev, &ifr, SIOCGMIIPHY) == 0) { |
| 732 | mii->reg_num = MII_BMSR; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 733 | if (IOCTL(slave_dev, &ifr, SIOCGMIIREG) == 0) |
| 734 | return mii->val_out & BMSR_LSTATUS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | } |
| 736 | } |
| 737 | |
Matthew Wilcox | 61a44b9 | 2007-07-31 14:00:02 -0700 | [diff] [blame] | 738 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | * If reporting, report that either there's no dev->do_ioctl, |
Matthew Wilcox | 61a44b9 | 2007-07-31 14:00:02 -0700 | [diff] [blame] | 740 | * or both SIOCGMIIREG and get_link failed (meaning that we |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | * cannot report link status). If not reporting, pretend |
| 742 | * we're ok. |
| 743 | */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 744 | return reporting ? -1 : BMSR_LSTATUS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | } |
| 746 | |
| 747 | /*----------------------------- Multicast list ------------------------------*/ |
| 748 | |
| 749 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | * Push the promiscuity flag down to appropriate slaves |
| 751 | */ |
Wang Chen | 7e1a1ac | 2008-07-14 20:51:36 -0700 | [diff] [blame] | 752 | static int bond_set_promiscuity(struct bonding *bond, int inc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | { |
Wang Chen | 7e1a1ac | 2008-07-14 20:51:36 -0700 | [diff] [blame] | 754 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | if (USES_PRIMARY(bond->params.mode)) { |
| 756 | /* write lock already acquired */ |
| 757 | if (bond->curr_active_slave) { |
Wang Chen | 7e1a1ac | 2008-07-14 20:51:36 -0700 | [diff] [blame] | 758 | err = dev_set_promiscuity(bond->curr_active_slave->dev, |
| 759 | inc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | } |
| 761 | } else { |
| 762 | struct slave *slave; |
| 763 | int i; |
| 764 | bond_for_each_slave(bond, slave, i) { |
Wang Chen | 7e1a1ac | 2008-07-14 20:51:36 -0700 | [diff] [blame] | 765 | err = dev_set_promiscuity(slave->dev, inc); |
| 766 | if (err) |
| 767 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | } |
| 769 | } |
Wang Chen | 7e1a1ac | 2008-07-14 20:51:36 -0700 | [diff] [blame] | 770 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | } |
| 772 | |
| 773 | /* |
| 774 | * Push the allmulti flag down to all slaves |
| 775 | */ |
Wang Chen | 7e1a1ac | 2008-07-14 20:51:36 -0700 | [diff] [blame] | 776 | static int bond_set_allmulti(struct bonding *bond, int inc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | { |
Wang Chen | 7e1a1ac | 2008-07-14 20:51:36 -0700 | [diff] [blame] | 778 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | if (USES_PRIMARY(bond->params.mode)) { |
| 780 | /* write lock already acquired */ |
| 781 | if (bond->curr_active_slave) { |
Wang Chen | 7e1a1ac | 2008-07-14 20:51:36 -0700 | [diff] [blame] | 782 | err = dev_set_allmulti(bond->curr_active_slave->dev, |
| 783 | inc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | } |
| 785 | } else { |
| 786 | struct slave *slave; |
| 787 | int i; |
| 788 | bond_for_each_slave(bond, slave, i) { |
Wang Chen | 7e1a1ac | 2008-07-14 20:51:36 -0700 | [diff] [blame] | 789 | err = dev_set_allmulti(slave->dev, inc); |
| 790 | if (err) |
| 791 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | } |
| 793 | } |
Wang Chen | 7e1a1ac | 2008-07-14 20:51:36 -0700 | [diff] [blame] | 794 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | } |
| 796 | |
| 797 | /* |
| 798 | * Add a Multicast address to slaves |
| 799 | * according to mode |
| 800 | */ |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 801 | static void bond_mc_add(struct bonding *bond, void *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | { |
| 803 | if (USES_PRIMARY(bond->params.mode)) { |
| 804 | /* write lock already acquired */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 805 | if (bond->curr_active_slave) |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 806 | dev_mc_add(bond->curr_active_slave->dev, addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | } else { |
| 808 | struct slave *slave; |
| 809 | int i; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 810 | |
| 811 | bond_for_each_slave(bond, slave, i) |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 812 | dev_mc_add(slave->dev, addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | } |
| 814 | } |
| 815 | |
| 816 | /* |
| 817 | * Remove a multicast address from slave |
| 818 | * according to mode |
| 819 | */ |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 820 | static void bond_mc_del(struct bonding *bond, void *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | { |
| 822 | if (USES_PRIMARY(bond->params.mode)) { |
| 823 | /* write lock already acquired */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 824 | if (bond->curr_active_slave) |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 825 | dev_mc_del(bond->curr_active_slave->dev, addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | } else { |
| 827 | struct slave *slave; |
| 828 | int i; |
| 829 | bond_for_each_slave(bond, slave, i) { |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 830 | dev_mc_del(slave->dev, addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | } |
| 832 | } |
| 833 | } |
| 834 | |
Jay Vosburgh | a816c7c | 2007-02-28 17:03:37 -0800 | [diff] [blame] | 835 | |
Flavio Leitner | 5a37e8c | 2010-10-05 14:23:57 +0000 | [diff] [blame] | 836 | static void __bond_resend_igmp_join_requests(struct net_device *dev) |
| 837 | { |
| 838 | struct in_device *in_dev; |
Flavio Leitner | 5a37e8c | 2010-10-05 14:23:57 +0000 | [diff] [blame] | 839 | |
| 840 | rcu_read_lock(); |
| 841 | in_dev = __in_dev_get_rcu(dev); |
Eric Dumazet | 866f3b2 | 2010-11-18 09:33:19 -0800 | [diff] [blame] | 842 | if (in_dev) |
David S. Miller | 2491242 | 2010-11-19 13:13:47 -0800 | [diff] [blame] | 843 | ip_mc_rejoin_groups(in_dev); |
Flavio Leitner | 5a37e8c | 2010-10-05 14:23:57 +0000 | [diff] [blame] | 844 | rcu_read_unlock(); |
| 845 | } |
| 846 | |
Jay Vosburgh | a816c7c | 2007-02-28 17:03:37 -0800 | [diff] [blame] | 847 | /* |
| 848 | * Retrieve the list of registered multicast addresses for the bonding |
| 849 | * device and retransmit an IGMP JOIN request to the current active |
| 850 | * slave. |
| 851 | */ |
| 852 | static void bond_resend_igmp_join_requests(struct bonding *bond) |
| 853 | { |
Flavio Leitner | 5a37e8c | 2010-10-05 14:23:57 +0000 | [diff] [blame] | 854 | struct net_device *vlan_dev; |
| 855 | struct vlan_entry *vlan; |
Jay Vosburgh | a816c7c | 2007-02-28 17:03:37 -0800 | [diff] [blame] | 856 | |
Flavio Leitner | 5a37e8c | 2010-10-05 14:23:57 +0000 | [diff] [blame] | 857 | read_lock(&bond->lock); |
| 858 | |
| 859 | /* rejoin all groups on bond device */ |
| 860 | __bond_resend_igmp_join_requests(bond->dev); |
| 861 | |
| 862 | /* rejoin all groups on vlan devices */ |
| 863 | if (bond->vlgrp) { |
| 864 | list_for_each_entry(vlan, &bond->vlan_list, vlan_list) { |
| 865 | vlan_dev = vlan_group_get_device(bond->vlgrp, |
| 866 | vlan->vlan_id); |
| 867 | if (vlan_dev) |
| 868 | __bond_resend_igmp_join_requests(vlan_dev); |
| 869 | } |
Jay Vosburgh | a816c7c | 2007-02-28 17:03:37 -0800 | [diff] [blame] | 870 | } |
| 871 | |
Flavio Leitner | c2952c3 | 2010-10-05 14:23:59 +0000 | [diff] [blame] | 872 | if (--bond->igmp_retrans > 0) |
| 873 | queue_delayed_work(bond->wq, &bond->mcast_work, HZ/5); |
| 874 | |
Flavio Leitner | 5a37e8c | 2010-10-05 14:23:57 +0000 | [diff] [blame] | 875 | read_unlock(&bond->lock); |
| 876 | } |
| 877 | |
stephen hemminger | 379b738 | 2010-10-15 11:02:56 +0000 | [diff] [blame] | 878 | static void bond_resend_igmp_join_requests_delayed(struct work_struct *work) |
Flavio Leitner | 5a37e8c | 2010-10-05 14:23:57 +0000 | [diff] [blame] | 879 | { |
| 880 | struct bonding *bond = container_of(work, struct bonding, |
| 881 | mcast_work.work); |
| 882 | bond_resend_igmp_join_requests(bond); |
Jay Vosburgh | a816c7c | 2007-02-28 17:03:37 -0800 | [diff] [blame] | 883 | } |
| 884 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | * flush all members of flush->mc_list from device dev->mc_list |
| 887 | */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 888 | static void bond_mc_list_flush(struct net_device *bond_dev, |
| 889 | struct net_device *slave_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 891 | struct bonding *bond = netdev_priv(bond_dev); |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 892 | struct netdev_hw_addr *ha; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 894 | netdev_for_each_mc_addr(ha, bond_dev) |
| 895 | dev_mc_del(slave_dev, ha->addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | |
| 897 | if (bond->params.mode == BOND_MODE_8023AD) { |
| 898 | /* del lacpdu mc addr from mc list */ |
| 899 | u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR; |
| 900 | |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 901 | dev_mc_del(slave_dev, lacpdu_multicast); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | } |
| 903 | } |
| 904 | |
| 905 | /*--------------------------- Active slave change ---------------------------*/ |
| 906 | |
| 907 | /* |
| 908 | * Update the mc list and multicast-related flags for the new and |
| 909 | * old active slaves (if any) according to the multicast mode, and |
| 910 | * promiscuous flags unconditionally. |
| 911 | */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 912 | static void bond_mc_swap(struct bonding *bond, struct slave *new_active, |
| 913 | struct slave *old_active) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | { |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 915 | struct netdev_hw_addr *ha; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 917 | if (!USES_PRIMARY(bond->params.mode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 | /* nothing to do - mc list is already up-to-date on |
| 919 | * all slaves |
| 920 | */ |
| 921 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | |
| 923 | if (old_active) { |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 924 | if (bond->dev->flags & IFF_PROMISC) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | dev_set_promiscuity(old_active->dev, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 927 | if (bond->dev->flags & IFF_ALLMULTI) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | dev_set_allmulti(old_active->dev, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 930 | netdev_for_each_mc_addr(ha, bond->dev) |
| 931 | dev_mc_del(old_active->dev, ha->addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | } |
| 933 | |
| 934 | if (new_active) { |
Wang Chen | 7e1a1ac | 2008-07-14 20:51:36 -0700 | [diff] [blame] | 935 | /* FIXME: Signal errors upstream. */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 936 | if (bond->dev->flags & IFF_PROMISC) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | dev_set_promiscuity(new_active->dev, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 939 | if (bond->dev->flags & IFF_ALLMULTI) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | dev_set_allmulti(new_active->dev, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 942 | netdev_for_each_mc_addr(ha, bond->dev) |
| 943 | dev_mc_add(new_active->dev, ha->addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | } |
| 945 | } |
| 946 | |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 947 | /* |
| 948 | * bond_do_fail_over_mac |
| 949 | * |
| 950 | * Perform special MAC address swapping for fail_over_mac settings |
| 951 | * |
| 952 | * Called with RTNL, bond->lock for read, curr_slave_lock for write_bh. |
| 953 | */ |
| 954 | static void bond_do_fail_over_mac(struct bonding *bond, |
| 955 | struct slave *new_active, |
| 956 | struct slave *old_active) |
Hannes Eder | 1f78d9f | 2009-02-14 11:15:33 +0000 | [diff] [blame] | 957 | __releases(&bond->curr_slave_lock) |
| 958 | __releases(&bond->lock) |
| 959 | __acquires(&bond->lock) |
| 960 | __acquires(&bond->curr_slave_lock) |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 961 | { |
| 962 | u8 tmp_mac[ETH_ALEN]; |
| 963 | struct sockaddr saddr; |
| 964 | int rv; |
| 965 | |
| 966 | switch (bond->params.fail_over_mac) { |
| 967 | case BOND_FOM_ACTIVE: |
| 968 | if (new_active) |
| 969 | memcpy(bond->dev->dev_addr, new_active->dev->dev_addr, |
| 970 | new_active->dev->addr_len); |
| 971 | break; |
| 972 | case BOND_FOM_FOLLOW: |
| 973 | /* |
| 974 | * if new_active && old_active, swap them |
| 975 | * if just old_active, do nothing (going to no active slave) |
| 976 | * if just new_active, set new_active to bond's MAC |
| 977 | */ |
| 978 | if (!new_active) |
| 979 | return; |
| 980 | |
| 981 | write_unlock_bh(&bond->curr_slave_lock); |
| 982 | read_unlock(&bond->lock); |
| 983 | |
| 984 | if (old_active) { |
| 985 | memcpy(tmp_mac, new_active->dev->dev_addr, ETH_ALEN); |
| 986 | memcpy(saddr.sa_data, old_active->dev->dev_addr, |
| 987 | ETH_ALEN); |
| 988 | saddr.sa_family = new_active->dev->type; |
| 989 | } else { |
| 990 | memcpy(saddr.sa_data, bond->dev->dev_addr, ETH_ALEN); |
| 991 | saddr.sa_family = bond->dev->type; |
| 992 | } |
| 993 | |
| 994 | rv = dev_set_mac_address(new_active->dev, &saddr); |
| 995 | if (rv) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 996 | pr_err("%s: Error %d setting MAC of slave %s\n", |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 997 | bond->dev->name, -rv, new_active->dev->name); |
| 998 | goto out; |
| 999 | } |
| 1000 | |
| 1001 | if (!old_active) |
| 1002 | goto out; |
| 1003 | |
| 1004 | memcpy(saddr.sa_data, tmp_mac, ETH_ALEN); |
| 1005 | saddr.sa_family = old_active->dev->type; |
| 1006 | |
| 1007 | rv = dev_set_mac_address(old_active->dev, &saddr); |
| 1008 | if (rv) |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1009 | pr_err("%s: Error %d setting MAC of slave %s\n", |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 1010 | bond->dev->name, -rv, new_active->dev->name); |
| 1011 | out: |
| 1012 | read_lock(&bond->lock); |
| 1013 | write_lock_bh(&bond->curr_slave_lock); |
| 1014 | break; |
| 1015 | default: |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1016 | pr_err("%s: bond_do_fail_over_mac impossible: bad policy %d\n", |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 1017 | bond->dev->name, bond->params.fail_over_mac); |
| 1018 | break; |
| 1019 | } |
| 1020 | |
| 1021 | } |
| 1022 | |
Jiri Pirko | a549952 | 2009-09-25 03:28:09 +0000 | [diff] [blame] | 1023 | static bool bond_should_change_active(struct bonding *bond) |
| 1024 | { |
| 1025 | struct slave *prim = bond->primary_slave; |
| 1026 | struct slave *curr = bond->curr_active_slave; |
| 1027 | |
| 1028 | if (!prim || !curr || curr->link != BOND_LINK_UP) |
| 1029 | return true; |
| 1030 | if (bond->force_primary) { |
| 1031 | bond->force_primary = false; |
| 1032 | return true; |
| 1033 | } |
| 1034 | if (bond->params.primary_reselect == BOND_PRI_RESELECT_BETTER && |
| 1035 | (prim->speed < curr->speed || |
| 1036 | (prim->speed == curr->speed && prim->duplex <= curr->duplex))) |
| 1037 | return false; |
| 1038 | if (bond->params.primary_reselect == BOND_PRI_RESELECT_FAILURE) |
| 1039 | return false; |
| 1040 | return true; |
| 1041 | } |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 1042 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | /** |
| 1044 | * find_best_interface - select the best available slave to be the active one |
| 1045 | * @bond: our bonding struct |
| 1046 | * |
| 1047 | * Warning: Caller must hold curr_slave_lock for writing. |
| 1048 | */ |
| 1049 | static struct slave *bond_find_best_slave(struct bonding *bond) |
| 1050 | { |
| 1051 | struct slave *new_active, *old_active; |
| 1052 | struct slave *bestslave = NULL; |
| 1053 | int mintime = bond->params.updelay; |
| 1054 | int i; |
| 1055 | |
Nicolas de Pesloüan | 49b4ad9 | 2009-10-07 14:11:00 -0700 | [diff] [blame] | 1056 | new_active = bond->curr_active_slave; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | |
| 1058 | if (!new_active) { /* there were no active slaves left */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1059 | if (bond->slave_cnt > 0) /* found one slave */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | new_active = bond->first_slave; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1061 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | return NULL; /* still no slave, return NULL */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | } |
| 1064 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | if ((bond->primary_slave) && |
Jiri Pirko | a549952 | 2009-09-25 03:28:09 +0000 | [diff] [blame] | 1066 | bond->primary_slave->link == BOND_LINK_UP && |
| 1067 | bond_should_change_active(bond)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | new_active = bond->primary_slave; |
| 1069 | } |
| 1070 | |
| 1071 | /* remember where to stop iterating over the slaves */ |
| 1072 | old_active = new_active; |
| 1073 | |
| 1074 | bond_for_each_slave_from(bond, new_active, i, old_active) { |
Jiri Pirko | b9f6025 | 2009-08-31 11:09:38 +0000 | [diff] [blame] | 1075 | if (new_active->link == BOND_LINK_UP) { |
| 1076 | return new_active; |
| 1077 | } else if (new_active->link == BOND_LINK_BACK && |
| 1078 | IS_UP(new_active->dev)) { |
| 1079 | /* link up, but waiting for stabilization */ |
| 1080 | if (new_active->delay < mintime) { |
| 1081 | mintime = new_active->delay; |
| 1082 | bestslave = new_active; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | } |
| 1084 | } |
| 1085 | } |
| 1086 | |
| 1087 | return bestslave; |
| 1088 | } |
| 1089 | |
Ben Hutchings | ad246c9 | 2011-04-26 15:25:52 +0000 | [diff] [blame] | 1090 | static bool bond_should_notify_peers(struct bonding *bond) |
| 1091 | { |
| 1092 | struct slave *slave = bond->curr_active_slave; |
| 1093 | |
| 1094 | pr_debug("bond_should_notify_peers: bond %s slave %s\n", |
| 1095 | bond->dev->name, slave ? slave->dev->name : "NULL"); |
| 1096 | |
| 1097 | if (!slave || !bond->send_peer_notif || |
| 1098 | test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state)) |
| 1099 | return false; |
| 1100 | |
| 1101 | bond->send_peer_notif--; |
| 1102 | return true; |
| 1103 | } |
| 1104 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | /** |
| 1106 | * change_active_interface - change the active slave into the specified one |
| 1107 | * @bond: our bonding struct |
| 1108 | * @new: the new slave to make the active one |
| 1109 | * |
| 1110 | * Set the new slave to the bond's settings and unset them on the old |
| 1111 | * curr_active_slave. |
| 1112 | * Setting include flags, mc-list, promiscuity, allmulti, etc. |
| 1113 | * |
| 1114 | * If @new's link state is %BOND_LINK_BACK we'll set it to %BOND_LINK_UP, |
| 1115 | * because it is apparently the best available slave we have, even though its |
| 1116 | * updelay hasn't timed out yet. |
| 1117 | * |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 1118 | * If new_active is not NULL, caller must hold bond->lock for read and |
| 1119 | * curr_slave_lock for write_bh. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | */ |
Mitch Williams | a77b532 | 2005-11-09 10:35:51 -0800 | [diff] [blame] | 1121 | void bond_change_active_slave(struct bonding *bond, struct slave *new_active) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1122 | { |
| 1123 | struct slave *old_active = bond->curr_active_slave; |
| 1124 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1125 | if (old_active == new_active) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | |
| 1128 | if (new_active) { |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 1129 | new_active->jiffies = jiffies; |
| 1130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1131 | if (new_active->link == BOND_LINK_BACK) { |
| 1132 | if (USES_PRIMARY(bond->params.mode)) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1133 | pr_info("%s: making interface %s the new active one %d ms earlier.\n", |
| 1134 | bond->dev->name, new_active->dev->name, |
| 1135 | (bond->params.updelay - new_active->delay) * bond->params.miimon); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | } |
| 1137 | |
| 1138 | new_active->delay = 0; |
| 1139 | new_active->link = BOND_LINK_UP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1141 | if (bond->params.mode == BOND_MODE_8023AD) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | bond_3ad_handle_link_change(new_active, BOND_LINK_UP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | |
Holger Eitzenberger | 5840205 | 2008-12-09 23:07:13 -0800 | [diff] [blame] | 1144 | if (bond_is_lb(bond)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | } else { |
| 1147 | if (USES_PRIMARY(bond->params.mode)) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1148 | pr_info("%s: making interface %s the new active one.\n", |
| 1149 | bond->dev->name, new_active->dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | } |
| 1151 | } |
| 1152 | } |
| 1153 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1154 | if (USES_PRIMARY(bond->params.mode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | bond_mc_swap(bond, new_active, old_active); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | |
Holger Eitzenberger | 5840205 | 2008-12-09 23:07:13 -0800 | [diff] [blame] | 1157 | if (bond_is_lb(bond)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | bond_alb_handle_active_change(bond, new_active); |
Jay Vosburgh | 8f903c7 | 2006-02-21 16:36:44 -0800 | [diff] [blame] | 1159 | if (old_active) |
| 1160 | bond_set_slave_inactive_flags(old_active); |
| 1161 | if (new_active) |
| 1162 | bond_set_slave_active_flags(new_active); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | } else { |
| 1164 | bond->curr_active_slave = new_active; |
| 1165 | } |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 1166 | |
| 1167 | if (bond->params.mode == BOND_MODE_ACTIVEBACKUP) { |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1168 | if (old_active) |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 1169 | bond_set_slave_inactive_flags(old_active); |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 1170 | |
| 1171 | if (new_active) { |
Ben Hutchings | ad246c9 | 2011-04-26 15:25:52 +0000 | [diff] [blame] | 1172 | bool should_notify_peers = false; |
| 1173 | |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 1174 | bond_set_slave_active_flags(new_active); |
Moni Shoua | 2ab8285 | 2007-10-09 19:43:39 -0700 | [diff] [blame] | 1175 | |
Or Gerlitz | 709f8a4 | 2008-06-13 18:12:01 -0700 | [diff] [blame] | 1176 | if (bond->params.fail_over_mac) |
| 1177 | bond_do_fail_over_mac(bond, new_active, |
| 1178 | old_active); |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 1179 | |
Ben Hutchings | ad246c9 | 2011-04-26 15:25:52 +0000 | [diff] [blame] | 1180 | if (netif_running(bond->dev)) { |
| 1181 | bond->send_peer_notif = |
| 1182 | bond->params.num_peer_notif; |
| 1183 | should_notify_peers = |
| 1184 | bond_should_notify_peers(bond); |
| 1185 | } |
| 1186 | |
Or Gerlitz | 01f3109 | 2008-06-13 18:12:02 -0700 | [diff] [blame] | 1187 | write_unlock_bh(&bond->curr_slave_lock); |
| 1188 | read_unlock(&bond->lock); |
| 1189 | |
Moni Shoua | 75c7850 | 2009-09-15 02:37:40 -0700 | [diff] [blame] | 1190 | netdev_bonding_change(bond->dev, NETDEV_BONDING_FAILOVER); |
Ben Hutchings | ad246c9 | 2011-04-26 15:25:52 +0000 | [diff] [blame] | 1191 | if (should_notify_peers) |
| 1192 | netdev_bonding_change(bond->dev, |
| 1193 | NETDEV_NOTIFY_PEERS); |
Or Gerlitz | 01f3109 | 2008-06-13 18:12:02 -0700 | [diff] [blame] | 1194 | |
| 1195 | read_lock(&bond->lock); |
| 1196 | write_lock_bh(&bond->curr_slave_lock); |
Moni Shoua | 7893b24 | 2008-05-17 21:10:12 -0700 | [diff] [blame] | 1197 | } |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 1198 | } |
Andy Gospodarek | a2fd940 | 2010-03-25 14:49:05 +0000 | [diff] [blame] | 1199 | |
Flavio Leitner | 5a37e8c | 2010-10-05 14:23:57 +0000 | [diff] [blame] | 1200 | /* resend IGMP joins since active slave has changed or |
| 1201 | * all were sent on curr_active_slave */ |
Ben Hutchings | ffa95ed | 2010-12-13 08:19:56 +0000 | [diff] [blame] | 1202 | if (((USES_PRIMARY(bond->params.mode) && new_active) || |
| 1203 | bond->params.mode == BOND_MODE_ROUNDROBIN) && |
| 1204 | netif_running(bond->dev)) { |
Flavio Leitner | c2952c3 | 2010-10-05 14:23:59 +0000 | [diff] [blame] | 1205 | bond->igmp_retrans = bond->params.resend_igmp; |
Flavio Leitner | 5a37e8c | 2010-10-05 14:23:57 +0000 | [diff] [blame] | 1206 | queue_delayed_work(bond->wq, &bond->mcast_work, 0); |
Andy Gospodarek | a2fd940 | 2010-03-25 14:49:05 +0000 | [diff] [blame] | 1207 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | } |
| 1209 | |
| 1210 | /** |
| 1211 | * bond_select_active_slave - select a new active slave, if needed |
| 1212 | * @bond: our bonding struct |
| 1213 | * |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1214 | * This functions should be called when one of the following occurs: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | * - The old curr_active_slave has been released or lost its link. |
| 1216 | * - The primary_slave has got its link back. |
| 1217 | * - A slave has got its link back and there's no old curr_active_slave. |
| 1218 | * |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 1219 | * Caller must hold bond->lock for read and curr_slave_lock for write_bh. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | */ |
Mitch Williams | a77b532 | 2005-11-09 10:35:51 -0800 | [diff] [blame] | 1221 | void bond_select_active_slave(struct bonding *bond) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | { |
| 1223 | struct slave *best_slave; |
Jay Vosburgh | ff59c45 | 2006-03-27 13:27:43 -0800 | [diff] [blame] | 1224 | int rv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1225 | |
| 1226 | best_slave = bond_find_best_slave(bond); |
| 1227 | if (best_slave != bond->curr_active_slave) { |
| 1228 | bond_change_active_slave(bond, best_slave); |
Jay Vosburgh | ff59c45 | 2006-03-27 13:27:43 -0800 | [diff] [blame] | 1229 | rv = bond_set_carrier(bond); |
| 1230 | if (!rv) |
| 1231 | return; |
| 1232 | |
| 1233 | if (netif_carrier_ok(bond->dev)) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1234 | pr_info("%s: first active interface up!\n", |
| 1235 | bond->dev->name); |
Jay Vosburgh | ff59c45 | 2006-03-27 13:27:43 -0800 | [diff] [blame] | 1236 | } else { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1237 | pr_info("%s: now running without any active interface !\n", |
| 1238 | bond->dev->name); |
Jay Vosburgh | ff59c45 | 2006-03-27 13:27:43 -0800 | [diff] [blame] | 1239 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1240 | } |
| 1241 | } |
| 1242 | |
| 1243 | /*--------------------------- slave list handling ---------------------------*/ |
| 1244 | |
| 1245 | /* |
| 1246 | * This function attaches the slave to the end of list. |
| 1247 | * |
| 1248 | * bond->lock held for writing by caller. |
| 1249 | */ |
| 1250 | static void bond_attach_slave(struct bonding *bond, struct slave *new_slave) |
| 1251 | { |
| 1252 | if (bond->first_slave == NULL) { /* attaching the first slave */ |
| 1253 | new_slave->next = new_slave; |
| 1254 | new_slave->prev = new_slave; |
| 1255 | bond->first_slave = new_slave; |
| 1256 | } else { |
| 1257 | new_slave->next = bond->first_slave; |
| 1258 | new_slave->prev = bond->first_slave->prev; |
| 1259 | new_slave->next->prev = new_slave; |
| 1260 | new_slave->prev->next = new_slave; |
| 1261 | } |
| 1262 | |
| 1263 | bond->slave_cnt++; |
| 1264 | } |
| 1265 | |
| 1266 | /* |
| 1267 | * This function detaches the slave from the list. |
| 1268 | * WARNING: no check is made to verify if the slave effectively |
| 1269 | * belongs to <bond>. |
| 1270 | * Nothing is freed on return, structures are just unchained. |
| 1271 | * If any slave pointer in bond was pointing to <slave>, |
| 1272 | * it should be changed by the calling function. |
| 1273 | * |
| 1274 | * bond->lock held for writing by caller. |
| 1275 | */ |
| 1276 | static void bond_detach_slave(struct bonding *bond, struct slave *slave) |
| 1277 | { |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1278 | if (slave->next) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | slave->next->prev = slave->prev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1281 | if (slave->prev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | slave->prev->next = slave->next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | |
| 1284 | if (bond->first_slave == slave) { /* slave is the first slave */ |
| 1285 | if (bond->slave_cnt > 1) { /* there are more slave */ |
| 1286 | bond->first_slave = slave->next; |
| 1287 | } else { |
| 1288 | bond->first_slave = NULL; /* slave was the last one */ |
| 1289 | } |
| 1290 | } |
| 1291 | |
| 1292 | slave->next = NULL; |
| 1293 | slave->prev = NULL; |
| 1294 | bond->slave_cnt--; |
| 1295 | } |
| 1296 | |
WANG Cong | f6dc31a | 2010-05-06 00:48:51 -0700 | [diff] [blame] | 1297 | #ifdef CONFIG_NET_POLL_CONTROLLER |
Amerigo Wang | 8a8efa2 | 2011-02-17 23:43:32 +0000 | [diff] [blame] | 1298 | static inline int slave_enable_netpoll(struct slave *slave) |
WANG Cong | f6dc31a | 2010-05-06 00:48:51 -0700 | [diff] [blame] | 1299 | { |
Amerigo Wang | 8a8efa2 | 2011-02-17 23:43:32 +0000 | [diff] [blame] | 1300 | struct netpoll *np; |
| 1301 | int err = 0; |
WANG Cong | f6dc31a | 2010-05-06 00:48:51 -0700 | [diff] [blame] | 1302 | |
Amerigo Wang | 8a8efa2 | 2011-02-17 23:43:32 +0000 | [diff] [blame] | 1303 | np = kzalloc(sizeof(*np), GFP_KERNEL); |
| 1304 | err = -ENOMEM; |
| 1305 | if (!np) |
| 1306 | goto out; |
| 1307 | |
| 1308 | np->dev = slave->dev; |
| 1309 | err = __netpoll_setup(np); |
| 1310 | if (err) { |
| 1311 | kfree(np); |
| 1312 | goto out; |
WANG Cong | f6dc31a | 2010-05-06 00:48:51 -0700 | [diff] [blame] | 1313 | } |
Amerigo Wang | 8a8efa2 | 2011-02-17 23:43:32 +0000 | [diff] [blame] | 1314 | slave->np = np; |
| 1315 | out: |
| 1316 | return err; |
| 1317 | } |
| 1318 | static inline void slave_disable_netpoll(struct slave *slave) |
| 1319 | { |
| 1320 | struct netpoll *np = slave->np; |
| 1321 | |
| 1322 | if (!np) |
| 1323 | return; |
| 1324 | |
| 1325 | slave->np = NULL; |
| 1326 | synchronize_rcu_bh(); |
| 1327 | __netpoll_cleanup(np); |
| 1328 | kfree(np); |
| 1329 | } |
| 1330 | static inline bool slave_dev_support_netpoll(struct net_device *slave_dev) |
| 1331 | { |
| 1332 | if (slave_dev->priv_flags & IFF_DISABLE_NETPOLL) |
| 1333 | return false; |
| 1334 | if (!slave_dev->netdev_ops->ndo_poll_controller) |
| 1335 | return false; |
| 1336 | return true; |
WANG Cong | f6dc31a | 2010-05-06 00:48:51 -0700 | [diff] [blame] | 1337 | } |
| 1338 | |
| 1339 | static void bond_poll_controller(struct net_device *bond_dev) |
| 1340 | { |
Amerigo Wang | 8a8efa2 | 2011-02-17 23:43:32 +0000 | [diff] [blame] | 1341 | } |
| 1342 | |
| 1343 | static void __bond_netpoll_cleanup(struct bonding *bond) |
| 1344 | { |
Neil Horman | c2355e1 | 2010-10-13 16:01:49 +0000 | [diff] [blame] | 1345 | struct slave *slave; |
| 1346 | int i; |
| 1347 | |
Amerigo Wang | 8a8efa2 | 2011-02-17 23:43:32 +0000 | [diff] [blame] | 1348 | bond_for_each_slave(bond, slave, i) |
| 1349 | if (IS_UP(slave->dev)) |
| 1350 | slave_disable_netpoll(slave); |
WANG Cong | f6dc31a | 2010-05-06 00:48:51 -0700 | [diff] [blame] | 1351 | } |
WANG Cong | f6dc31a | 2010-05-06 00:48:51 -0700 | [diff] [blame] | 1352 | static void bond_netpoll_cleanup(struct net_device *bond_dev) |
| 1353 | { |
| 1354 | struct bonding *bond = netdev_priv(bond_dev); |
WANG Cong | f6dc31a | 2010-05-06 00:48:51 -0700 | [diff] [blame] | 1355 | |
| 1356 | read_lock(&bond->lock); |
Amerigo Wang | 8a8efa2 | 2011-02-17 23:43:32 +0000 | [diff] [blame] | 1357 | __bond_netpoll_cleanup(bond); |
WANG Cong | f6dc31a | 2010-05-06 00:48:51 -0700 | [diff] [blame] | 1358 | read_unlock(&bond->lock); |
| 1359 | } |
| 1360 | |
Amerigo Wang | 8a8efa2 | 2011-02-17 23:43:32 +0000 | [diff] [blame] | 1361 | static int bond_netpoll_setup(struct net_device *dev, struct netpoll_info *ni) |
| 1362 | { |
| 1363 | struct bonding *bond = netdev_priv(dev); |
| 1364 | struct slave *slave; |
| 1365 | int i, err = 0; |
WANG Cong | f6dc31a | 2010-05-06 00:48:51 -0700 | [diff] [blame] | 1366 | |
Amerigo Wang | 8a8efa2 | 2011-02-17 23:43:32 +0000 | [diff] [blame] | 1367 | read_lock(&bond->lock); |
| 1368 | bond_for_each_slave(bond, slave, i) { |
Amerigo Wang | 8a8efa2 | 2011-02-17 23:43:32 +0000 | [diff] [blame] | 1369 | err = slave_enable_netpoll(slave); |
| 1370 | if (err) { |
| 1371 | __bond_netpoll_cleanup(bond); |
| 1372 | break; |
| 1373 | } |
| 1374 | } |
| 1375 | read_unlock(&bond->lock); |
| 1376 | return err; |
| 1377 | } |
| 1378 | |
| 1379 | static struct netpoll_info *bond_netpoll_info(struct bonding *bond) |
| 1380 | { |
| 1381 | return bond->dev->npinfo; |
| 1382 | } |
| 1383 | |
| 1384 | #else |
| 1385 | static inline int slave_enable_netpoll(struct slave *slave) |
| 1386 | { |
| 1387 | return 0; |
| 1388 | } |
| 1389 | static inline void slave_disable_netpoll(struct slave *slave) |
| 1390 | { |
| 1391 | } |
WANG Cong | f6dc31a | 2010-05-06 00:48:51 -0700 | [diff] [blame] | 1392 | static void bond_netpoll_cleanup(struct net_device *bond_dev) |
| 1393 | { |
| 1394 | } |
WANG Cong | f6dc31a | 2010-05-06 00:48:51 -0700 | [diff] [blame] | 1395 | #endif |
| 1396 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1397 | /*---------------------------------- IOCTL ----------------------------------*/ |
| 1398 | |
Adrian Bunk | 4ad072c | 2007-07-09 11:51:12 -0700 | [diff] [blame] | 1399 | static int bond_sethwaddr(struct net_device *bond_dev, |
| 1400 | struct net_device *slave_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1401 | { |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 1402 | pr_debug("bond_dev=%p\n", bond_dev); |
| 1403 | pr_debug("slave_dev=%p\n", slave_dev); |
| 1404 | pr_debug("slave_dev->addr_len=%d\n", slave_dev->addr_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1405 | memcpy(bond_dev->dev_addr, slave_dev->dev_addr, slave_dev->addr_len); |
| 1406 | return 0; |
| 1407 | } |
| 1408 | |
Herbert Xu | 7f353bf | 2007-08-10 15:47:58 -0700 | [diff] [blame] | 1409 | #define BOND_VLAN_FEATURES \ |
| 1410 | (NETIF_F_VLAN_CHALLENGED | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_TX | \ |
| 1411 | NETIF_F_HW_VLAN_FILTER) |
Arthur Kepner | 8531c5f | 2005-08-23 01:34:53 -0400 | [diff] [blame] | 1412 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1413 | /* |
Jay Vosburgh | 8e3babc | 2005-11-04 18:45:45 -0800 | [diff] [blame] | 1414 | * Compute the common dev->feature set available to all slaves. Some |
Herbert Xu | 7f353bf | 2007-08-10 15:47:58 -0700 | [diff] [blame] | 1415 | * feature bits are managed elsewhere, so preserve those feature bits |
| 1416 | * on the master device. |
Arthur Kepner | 8531c5f | 2005-08-23 01:34:53 -0400 | [diff] [blame] | 1417 | */ |
| 1418 | static int bond_compute_features(struct bonding *bond) |
| 1419 | { |
Arthur Kepner | 8531c5f | 2005-08-23 01:34:53 -0400 | [diff] [blame] | 1420 | struct slave *slave; |
| 1421 | struct net_device *bond_dev = bond->dev; |
Michał Mirosław | 04ed3e7 | 2011-01-24 15:32:47 -0800 | [diff] [blame] | 1422 | u32 features = bond_dev->features; |
| 1423 | u32 vlan_features = 0; |
Moni Shoua | 3158bf7 | 2007-10-09 19:43:41 -0700 | [diff] [blame] | 1424 | unsigned short max_hard_header_len = max((u16)ETH_HLEN, |
| 1425 | bond_dev->hard_header_len); |
Jay Vosburgh | 8e3babc | 2005-11-04 18:45:45 -0800 | [diff] [blame] | 1426 | int i; |
Arthur Kepner | 8531c5f | 2005-08-23 01:34:53 -0400 | [diff] [blame] | 1427 | |
Herbert Xu | 7f353bf | 2007-08-10 15:47:58 -0700 | [diff] [blame] | 1428 | features &= ~(NETIF_F_ALL_CSUM | BOND_VLAN_FEATURES); |
Tom Herbert | c6e1a0d | 2011-04-04 22:30:30 -0700 | [diff] [blame] | 1429 | features |= NETIF_F_GSO_MASK | NETIF_F_NO_CSUM | NETIF_F_NOCACHE_COPY; |
Herbert Xu | b63365a | 2008-10-23 01:11:29 -0700 | [diff] [blame] | 1430 | |
| 1431 | if (!bond->first_slave) |
| 1432 | goto done; |
| 1433 | |
| 1434 | features &= ~NETIF_F_ONE_FOR_ALL; |
Herbert Xu | 7f353bf | 2007-08-10 15:47:58 -0700 | [diff] [blame] | 1435 | |
Jay Vosburgh | 278339a | 2009-08-28 12:05:12 +0000 | [diff] [blame] | 1436 | vlan_features = bond->first_slave->dev->vlan_features; |
Jay Vosburgh | 54ef313 | 2006-09-22 21:53:39 -0700 | [diff] [blame] | 1437 | bond_for_each_slave(bond, slave, i) { |
Herbert Xu | b63365a | 2008-10-23 01:11:29 -0700 | [diff] [blame] | 1438 | features = netdev_increment_features(features, |
| 1439 | slave->dev->features, |
| 1440 | NETIF_F_ONE_FOR_ALL); |
Jay Vosburgh | 278339a | 2009-08-28 12:05:12 +0000 | [diff] [blame] | 1441 | vlan_features = netdev_increment_features(vlan_features, |
| 1442 | slave->dev->vlan_features, |
| 1443 | NETIF_F_ONE_FOR_ALL); |
Jay Vosburgh | 54ef313 | 2006-09-22 21:53:39 -0700 | [diff] [blame] | 1444 | if (slave->dev->hard_header_len > max_hard_header_len) |
| 1445 | max_hard_header_len = slave->dev->hard_header_len; |
| 1446 | } |
Arthur Kepner | 8531c5f | 2005-08-23 01:34:53 -0400 | [diff] [blame] | 1447 | |
Herbert Xu | b63365a | 2008-10-23 01:11:29 -0700 | [diff] [blame] | 1448 | done: |
Herbert Xu | 7f353bf | 2007-08-10 15:47:58 -0700 | [diff] [blame] | 1449 | features |= (bond_dev->features & BOND_VLAN_FEATURES); |
Michał Mirosław | acd1130 | 2011-01-24 15:45:15 -0800 | [diff] [blame] | 1450 | bond_dev->features = netdev_fix_features(bond_dev, features); |
| 1451 | bond_dev->vlan_features = netdev_fix_features(bond_dev, vlan_features); |
Jay Vosburgh | 54ef313 | 2006-09-22 21:53:39 -0700 | [diff] [blame] | 1452 | bond_dev->hard_header_len = max_hard_header_len; |
Arthur Kepner | 8531c5f | 2005-08-23 01:34:53 -0400 | [diff] [blame] | 1453 | |
| 1454 | return 0; |
| 1455 | } |
| 1456 | |
Moni Shoua | 872254d | 2007-10-09 19:43:38 -0700 | [diff] [blame] | 1457 | static void bond_setup_by_slave(struct net_device *bond_dev, |
| 1458 | struct net_device *slave_dev) |
| 1459 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 1460 | struct bonding *bond = netdev_priv(bond_dev); |
Moni Shoua | d90a162 | 2007-10-09 19:43:43 -0700 | [diff] [blame] | 1461 | |
Stephen Hemminger | 0082982 | 2008-11-20 20:14:53 -0800 | [diff] [blame] | 1462 | bond_dev->header_ops = slave_dev->header_ops; |
Moni Shoua | 872254d | 2007-10-09 19:43:38 -0700 | [diff] [blame] | 1463 | |
| 1464 | bond_dev->type = slave_dev->type; |
| 1465 | bond_dev->hard_header_len = slave_dev->hard_header_len; |
| 1466 | bond_dev->addr_len = slave_dev->addr_len; |
| 1467 | |
| 1468 | memcpy(bond_dev->broadcast, slave_dev->broadcast, |
| 1469 | slave_dev->addr_len); |
Moni Shoua | d90a162 | 2007-10-09 19:43:43 -0700 | [diff] [blame] | 1470 | bond->setup_by_slave = 1; |
Moni Shoua | 872254d | 2007-10-09 19:43:38 -0700 | [diff] [blame] | 1471 | } |
| 1472 | |
Jiri Pirko | 5b2c4dd | 2011-02-23 09:05:42 +0000 | [diff] [blame] | 1473 | /* On bonding slaves other than the currently active slave, suppress |
Jiri Pirko | 3aba891 | 2011-04-19 03:48:16 +0000 | [diff] [blame] | 1474 | * duplicates except for alb non-mcast/bcast. |
Jiri Pirko | 5b2c4dd | 2011-02-23 09:05:42 +0000 | [diff] [blame] | 1475 | */ |
| 1476 | static bool bond_should_deliver_exact_match(struct sk_buff *skb, |
Jiri Pirko | 0bd80da | 2011-03-16 08:45:23 +0000 | [diff] [blame] | 1477 | struct slave *slave, |
| 1478 | struct bonding *bond) |
Jiri Pirko | 5b2c4dd | 2011-02-23 09:05:42 +0000 | [diff] [blame] | 1479 | { |
Jiri Pirko | 2d7011c | 2011-03-16 08:46:43 +0000 | [diff] [blame] | 1480 | if (bond_is_slave_inactive(slave)) { |
Jiri Pirko | 0bd80da | 2011-03-16 08:45:23 +0000 | [diff] [blame] | 1481 | if (bond->params.mode == BOND_MODE_ALB && |
Jiri Pirko | 5b2c4dd | 2011-02-23 09:05:42 +0000 | [diff] [blame] | 1482 | skb->pkt_type != PACKET_BROADCAST && |
| 1483 | skb->pkt_type != PACKET_MULTICAST) |
Jiri Pirko | 5b2c4dd | 2011-02-23 09:05:42 +0000 | [diff] [blame] | 1484 | return false; |
Jiri Pirko | 5b2c4dd | 2011-02-23 09:05:42 +0000 | [diff] [blame] | 1485 | return true; |
| 1486 | } |
| 1487 | return false; |
| 1488 | } |
| 1489 | |
Jiri Pirko | 8a4eb57 | 2011-03-12 03:14:39 +0000 | [diff] [blame] | 1490 | static rx_handler_result_t bond_handle_frame(struct sk_buff **pskb) |
Jiri Pirko | 5b2c4dd | 2011-02-23 09:05:42 +0000 | [diff] [blame] | 1491 | { |
Jiri Pirko | 8a4eb57 | 2011-03-12 03:14:39 +0000 | [diff] [blame] | 1492 | struct sk_buff *skb = *pskb; |
Jiri Pirko | f1c1775 | 2011-03-12 03:14:35 +0000 | [diff] [blame] | 1493 | struct slave *slave; |
Jiri Pirko | 0bd80da | 2011-03-16 08:45:23 +0000 | [diff] [blame] | 1494 | struct bonding *bond; |
Jiri Pirko | 5b2c4dd | 2011-02-23 09:05:42 +0000 | [diff] [blame] | 1495 | |
Jiri Pirko | 8a4eb57 | 2011-03-12 03:14:39 +0000 | [diff] [blame] | 1496 | skb = skb_share_check(skb, GFP_ATOMIC); |
| 1497 | if (unlikely(!skb)) |
| 1498 | return RX_HANDLER_CONSUMED; |
| 1499 | |
| 1500 | *pskb = skb; |
Jiri Pirko | 5b2c4dd | 2011-02-23 09:05:42 +0000 | [diff] [blame] | 1501 | |
Jiri Pirko | 35d4890 | 2011-03-22 02:38:12 +0000 | [diff] [blame] | 1502 | slave = bond_slave_get_rcu(skb->dev); |
| 1503 | bond = slave->bond; |
Jiri Pirko | 0bd80da | 2011-03-16 08:45:23 +0000 | [diff] [blame] | 1504 | |
| 1505 | if (bond->params.arp_interval) |
Jiri Pirko | f1c1775 | 2011-03-12 03:14:35 +0000 | [diff] [blame] | 1506 | slave->dev->last_rx = jiffies; |
Jiri Pirko | 5b2c4dd | 2011-02-23 09:05:42 +0000 | [diff] [blame] | 1507 | |
Jiri Pirko | 3aba891 | 2011-04-19 03:48:16 +0000 | [diff] [blame] | 1508 | if (bond->recv_probe) { |
| 1509 | struct sk_buff *nskb = skb_clone(skb, GFP_ATOMIC); |
| 1510 | |
| 1511 | if (likely(nskb)) { |
| 1512 | bond->recv_probe(nskb, bond, slave); |
| 1513 | dev_kfree_skb(nskb); |
| 1514 | } |
| 1515 | } |
| 1516 | |
Jiri Pirko | 0bd80da | 2011-03-16 08:45:23 +0000 | [diff] [blame] | 1517 | if (bond_should_deliver_exact_match(skb, slave, bond)) { |
Jiri Pirko | 8a4eb57 | 2011-03-12 03:14:39 +0000 | [diff] [blame] | 1518 | return RX_HANDLER_EXACT; |
Jiri Pirko | 5b2c4dd | 2011-02-23 09:05:42 +0000 | [diff] [blame] | 1519 | } |
| 1520 | |
Jiri Pirko | 35d4890 | 2011-03-22 02:38:12 +0000 | [diff] [blame] | 1521 | skb->dev = bond->dev; |
Jiri Pirko | 5b2c4dd | 2011-02-23 09:05:42 +0000 | [diff] [blame] | 1522 | |
Jiri Pirko | 0bd80da | 2011-03-16 08:45:23 +0000 | [diff] [blame] | 1523 | if (bond->params.mode == BOND_MODE_ALB && |
Jiri Pirko | 35d4890 | 2011-03-22 02:38:12 +0000 | [diff] [blame] | 1524 | bond->dev->priv_flags & IFF_BRIDGE_PORT && |
Jiri Pirko | 5b2c4dd | 2011-02-23 09:05:42 +0000 | [diff] [blame] | 1525 | skb->pkt_type == PACKET_HOST) { |
Jiri Pirko | 5b2c4dd | 2011-02-23 09:05:42 +0000 | [diff] [blame] | 1526 | |
Changli Gao | 541ac7c | 2011-03-02 21:07:14 +0000 | [diff] [blame] | 1527 | if (unlikely(skb_cow_head(skb, |
| 1528 | skb->data - skb_mac_header(skb)))) { |
| 1529 | kfree_skb(skb); |
Jiri Pirko | 8a4eb57 | 2011-03-12 03:14:39 +0000 | [diff] [blame] | 1530 | return RX_HANDLER_CONSUMED; |
Changli Gao | 541ac7c | 2011-03-02 21:07:14 +0000 | [diff] [blame] | 1531 | } |
Jiri Pirko | 35d4890 | 2011-03-22 02:38:12 +0000 | [diff] [blame] | 1532 | memcpy(eth_hdr(skb)->h_dest, bond->dev->dev_addr, ETH_ALEN); |
Jiri Pirko | 5b2c4dd | 2011-02-23 09:05:42 +0000 | [diff] [blame] | 1533 | } |
| 1534 | |
Jiri Pirko | 8a4eb57 | 2011-03-12 03:14:39 +0000 | [diff] [blame] | 1535 | return RX_HANDLER_ANOTHER; |
Jiri Pirko | 5b2c4dd | 2011-02-23 09:05:42 +0000 | [diff] [blame] | 1536 | } |
| 1537 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | /* enslave device <slave> to bond device <master> */ |
Mitch Williams | a77b532 | 2005-11-09 10:35:51 -0800 | [diff] [blame] | 1539 | int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 1541 | struct bonding *bond = netdev_priv(bond_dev); |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 1542 | const struct net_device_ops *slave_ops = slave_dev->netdev_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1543 | struct slave *new_slave = NULL; |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 1544 | struct netdev_hw_addr *ha; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1545 | struct sockaddr addr; |
| 1546 | int link_reporting; |
| 1547 | int old_features = bond_dev->features; |
| 1548 | int res = 0; |
| 1549 | |
nsxfreddy@gmail.com | 552709d | 2005-09-21 14:18:04 -0500 | [diff] [blame] | 1550 | if (!bond->params.use_carrier && slave_dev->ethtool_ops == NULL && |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 1551 | slave_ops->ndo_do_ioctl == NULL) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1552 | pr_warning("%s: Warning: no link monitoring support for %s\n", |
| 1553 | bond_dev->name, slave_dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1554 | } |
| 1555 | |
| 1556 | /* bond must be initialized by bond_open() before enslaving */ |
| 1557 | if (!(bond_dev->flags & IFF_UP)) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1558 | pr_warning("%s: master_dev is not up in bond_enslave\n", |
| 1559 | bond_dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1560 | } |
| 1561 | |
| 1562 | /* already enslaved */ |
| 1563 | if (slave_dev->flags & IFF_SLAVE) { |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 1564 | pr_debug("Error, Device was already enslaved\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1565 | return -EBUSY; |
| 1566 | } |
| 1567 | |
| 1568 | /* vlan challenged mutual exclusion */ |
| 1569 | /* no need to lock since we're protected by rtnl_lock */ |
| 1570 | if (slave_dev->features & NETIF_F_VLAN_CHALLENGED) { |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 1571 | pr_debug("%s: NETIF_F_VLAN_CHALLENGED\n", slave_dev->name); |
Jay Vosburgh | f35188f | 2010-07-21 12:14:47 +0000 | [diff] [blame] | 1572 | if (bond->vlgrp) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1573 | pr_err("%s: Error: cannot enslave VLAN challenged slave %s on VLAN enabled bond %s\n", |
| 1574 | bond_dev->name, slave_dev->name, bond_dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 | return -EPERM; |
| 1576 | } else { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1577 | pr_warning("%s: Warning: enslaved VLAN challenged slave %s. Adding VLANs will be blocked as long as %s is part of bond %s\n", |
| 1578 | bond_dev->name, slave_dev->name, |
| 1579 | slave_dev->name, bond_dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1580 | bond_dev->features |= NETIF_F_VLAN_CHALLENGED; |
| 1581 | } |
| 1582 | } else { |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 1583 | pr_debug("%s: ! NETIF_F_VLAN_CHALLENGED\n", slave_dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1584 | if (bond->slave_cnt == 0) { |
| 1585 | /* First slave, and it is not VLAN challenged, |
| 1586 | * so remove the block of adding VLANs over the bond. |
| 1587 | */ |
| 1588 | bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED; |
| 1589 | } |
| 1590 | } |
| 1591 | |
Jay Vosburgh | 217df67 | 2005-09-26 16:11:50 -0700 | [diff] [blame] | 1592 | /* |
| 1593 | * Old ifenslave binaries are no longer supported. These can |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1594 | * be identified with moderate accuracy by the state of the slave: |
Jay Vosburgh | 217df67 | 2005-09-26 16:11:50 -0700 | [diff] [blame] | 1595 | * the current ifenslave will set the interface down prior to |
| 1596 | * enslaving it; the old ifenslave will not. |
| 1597 | */ |
| 1598 | if ((slave_dev->flags & IFF_UP)) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1599 | pr_err("%s is up. This may be due to an out of date ifenslave.\n", |
Jay Vosburgh | 217df67 | 2005-09-26 16:11:50 -0700 | [diff] [blame] | 1600 | slave_dev->name); |
| 1601 | res = -EPERM; |
| 1602 | goto err_undo_flags; |
| 1603 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1604 | |
Moni Shoua | 872254d | 2007-10-09 19:43:38 -0700 | [diff] [blame] | 1605 | /* set bonding device ether type by slave - bonding netdevices are |
| 1606 | * created with ether_setup, so when the slave type is not ARPHRD_ETHER |
| 1607 | * there is a need to override some of the type dependent attribs/funcs. |
| 1608 | * |
| 1609 | * bond ether type mutual exclusion - don't allow slaves of dissimilar |
| 1610 | * ether type (eg ARPHRD_ETHER and ARPHRD_INFINIBAND) share the same bond |
| 1611 | */ |
| 1612 | if (bond->slave_cnt == 0) { |
Moni Shoua | e36b9d1 | 2009-07-15 04:56:31 +0000 | [diff] [blame] | 1613 | if (bond_dev->type != slave_dev->type) { |
Moni Shoua | e36b9d1 | 2009-07-15 04:56:31 +0000 | [diff] [blame] | 1614 | pr_debug("%s: change device type from %d to %d\n", |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1615 | bond_dev->name, |
| 1616 | bond_dev->type, slave_dev->type); |
Moni Shoua | 75c7850 | 2009-09-15 02:37:40 -0700 | [diff] [blame] | 1617 | |
Jiri Pirko | 3ca5b40 | 2010-03-10 10:29:35 +0000 | [diff] [blame] | 1618 | res = netdev_bonding_change(bond_dev, |
| 1619 | NETDEV_PRE_TYPE_CHANGE); |
| 1620 | res = notifier_to_errno(res); |
| 1621 | if (res) { |
| 1622 | pr_err("%s: refused to change device type\n", |
| 1623 | bond_dev->name); |
| 1624 | res = -EBUSY; |
| 1625 | goto err_undo_flags; |
| 1626 | } |
Moni Shoua | 75c7850 | 2009-09-15 02:37:40 -0700 | [diff] [blame] | 1627 | |
Jiri Pirko | 32a806c | 2010-03-19 04:00:23 +0000 | [diff] [blame] | 1628 | /* Flush unicast and multicast addresses */ |
Jiri Pirko | a748ee2 | 2010-04-01 21:22:09 +0000 | [diff] [blame] | 1629 | dev_uc_flush(bond_dev); |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 1630 | dev_mc_flush(bond_dev); |
Jiri Pirko | 32a806c | 2010-03-19 04:00:23 +0000 | [diff] [blame] | 1631 | |
Moni Shoua | e36b9d1 | 2009-07-15 04:56:31 +0000 | [diff] [blame] | 1632 | if (slave_dev->type != ARPHRD_ETHER) |
| 1633 | bond_setup_by_slave(bond_dev, slave_dev); |
| 1634 | else |
| 1635 | ether_setup(bond_dev); |
Moni Shoua | 75c7850 | 2009-09-15 02:37:40 -0700 | [diff] [blame] | 1636 | |
Jiri Pirko | 93d9b7d | 2010-03-10 10:28:56 +0000 | [diff] [blame] | 1637 | netdev_bonding_change(bond_dev, |
| 1638 | NETDEV_POST_TYPE_CHANGE); |
Moni Shoua | e36b9d1 | 2009-07-15 04:56:31 +0000 | [diff] [blame] | 1639 | } |
Moni Shoua | 872254d | 2007-10-09 19:43:38 -0700 | [diff] [blame] | 1640 | } else if (bond_dev->type != slave_dev->type) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1641 | pr_err("%s ether type (%d) is different from other slaves (%d), can not enslave it.\n", |
| 1642 | slave_dev->name, |
| 1643 | slave_dev->type, bond_dev->type); |
| 1644 | res = -EINVAL; |
| 1645 | goto err_undo_flags; |
Moni Shoua | 872254d | 2007-10-09 19:43:38 -0700 | [diff] [blame] | 1646 | } |
| 1647 | |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 1648 | if (slave_ops->ndo_set_mac_address == NULL) { |
Moni Shoua | 2ab8285 | 2007-10-09 19:43:39 -0700 | [diff] [blame] | 1649 | if (bond->slave_cnt == 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1650 | pr_warning("%s: Warning: The first slave device specified does not support setting the MAC address. Setting fail_over_mac to active.", |
| 1651 | bond_dev->name); |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 1652 | bond->params.fail_over_mac = BOND_FOM_ACTIVE; |
| 1653 | } else if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1654 | pr_err("%s: Error: The slave device specified does not support setting the MAC address, but fail_over_mac is not set to active.\n", |
| 1655 | bond_dev->name); |
Moni Shoua | 2ab8285 | 2007-10-09 19:43:39 -0700 | [diff] [blame] | 1656 | res = -EOPNOTSUPP; |
| 1657 | goto err_undo_flags; |
| 1658 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1659 | } |
| 1660 | |
Jiri Pirko | c20811a | 2010-05-19 01:14:29 +0000 | [diff] [blame] | 1661 | /* If this is the first slave, then we need to set the master's hardware |
| 1662 | * address to be the same as the slave's. */ |
David Strand | d13a2cb | 2010-12-01 11:43:08 -0800 | [diff] [blame] | 1663 | if (is_zero_ether_addr(bond->dev->dev_addr)) |
Jiri Pirko | c20811a | 2010-05-19 01:14:29 +0000 | [diff] [blame] | 1664 | memcpy(bond->dev->dev_addr, slave_dev->dev_addr, |
| 1665 | slave_dev->addr_len); |
| 1666 | |
| 1667 | |
Joe Jin | 243cb4e | 2007-02-06 14:16:40 -0800 | [diff] [blame] | 1668 | new_slave = kzalloc(sizeof(struct slave), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | if (!new_slave) { |
| 1670 | res = -ENOMEM; |
| 1671 | goto err_undo_flags; |
| 1672 | } |
| 1673 | |
Andy Gospodarek | bb1d912 | 2010-06-02 08:40:18 +0000 | [diff] [blame] | 1674 | /* |
| 1675 | * Set the new_slave's queue_id to be zero. Queue ID mapping |
| 1676 | * is set via sysfs or module option if desired. |
| 1677 | */ |
| 1678 | new_slave->queue_id = 0; |
| 1679 | |
Jiri Pirko | b15ba0f | 2010-05-18 05:42:40 +0000 | [diff] [blame] | 1680 | /* Save slave's original mtu and then set it to match the bond */ |
| 1681 | new_slave->original_mtu = slave_dev->mtu; |
| 1682 | res = dev_set_mtu(slave_dev, bond->dev->mtu); |
| 1683 | if (res) { |
| 1684 | pr_debug("Error %d calling dev_set_mtu\n", res); |
| 1685 | goto err_free; |
| 1686 | } |
| 1687 | |
Jay Vosburgh | 217df67 | 2005-09-26 16:11:50 -0700 | [diff] [blame] | 1688 | /* |
| 1689 | * Save slave's original ("permanent") mac address for modes |
| 1690 | * that need it, and for restoring it upon release, and then |
| 1691 | * set it to the master's address |
| 1692 | */ |
| 1693 | memcpy(new_slave->perm_hwaddr, slave_dev->dev_addr, ETH_ALEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1694 | |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 1695 | if (!bond->params.fail_over_mac) { |
Moni Shoua | 2ab8285 | 2007-10-09 19:43:39 -0700 | [diff] [blame] | 1696 | /* |
| 1697 | * Set slave to master's mac address. The application already |
| 1698 | * set the master's mac address to that of the first slave |
| 1699 | */ |
| 1700 | memcpy(addr.sa_data, bond_dev->dev_addr, bond_dev->addr_len); |
| 1701 | addr.sa_family = slave_dev->type; |
| 1702 | res = dev_set_mac_address(slave_dev, &addr); |
| 1703 | if (res) { |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 1704 | pr_debug("Error %d calling set_mac_address\n", res); |
Jiri Pirko | b15ba0f | 2010-05-18 05:42:40 +0000 | [diff] [blame] | 1705 | goto err_restore_mtu; |
Moni Shoua | 2ab8285 | 2007-10-09 19:43:39 -0700 | [diff] [blame] | 1706 | } |
Jay Vosburgh | 217df67 | 2005-09-26 16:11:50 -0700 | [diff] [blame] | 1707 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1708 | |
Jiri Pirko | 1765a57 | 2011-02-12 06:48:36 +0000 | [diff] [blame] | 1709 | res = netdev_set_bond_master(slave_dev, bond_dev); |
Jay Vosburgh | c2edacf | 2007-07-09 10:42:47 -0700 | [diff] [blame] | 1710 | if (res) { |
Jiri Pirko | 1765a57 | 2011-02-12 06:48:36 +0000 | [diff] [blame] | 1711 | pr_debug("Error %d calling netdev_set_bond_master\n", res); |
Jay Vosburgh | 569f0c4 | 2008-05-02 18:06:02 -0700 | [diff] [blame] | 1712 | goto err_restore_mac; |
Jay Vosburgh | c2edacf | 2007-07-09 10:42:47 -0700 | [diff] [blame] | 1713 | } |
Jiri Pirko | 5b2c4dd | 2011-02-23 09:05:42 +0000 | [diff] [blame] | 1714 | |
Jay Vosburgh | 217df67 | 2005-09-26 16:11:50 -0700 | [diff] [blame] | 1715 | /* open the slave since the application closed it */ |
| 1716 | res = dev_open(slave_dev); |
| 1717 | if (res) { |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1718 | pr_debug("Opening slave %s failed\n", slave_dev->name); |
Jiri Pirko | 35d4890 | 2011-03-22 02:38:12 +0000 | [diff] [blame] | 1719 | goto err_unset_master; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1720 | } |
| 1721 | |
Jiri Pirko | 35d4890 | 2011-03-22 02:38:12 +0000 | [diff] [blame] | 1722 | new_slave->bond = bond; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1723 | new_slave->dev = slave_dev; |
Jay Vosburgh | 0b680e7 | 2006-09-22 21:54:10 -0700 | [diff] [blame] | 1724 | slave_dev->priv_flags |= IFF_BONDING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1725 | |
Holger Eitzenberger | 5840205 | 2008-12-09 23:07:13 -0800 | [diff] [blame] | 1726 | if (bond_is_lb(bond)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1727 | /* bond_alb_init_slave() must be called before all other stages since |
| 1728 | * it might fail and we do not want to have to undo everything |
| 1729 | */ |
| 1730 | res = bond_alb_init_slave(bond, new_slave); |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1731 | if (res) |
Jay Vosburgh | 569f0c4 | 2008-05-02 18:06:02 -0700 | [diff] [blame] | 1732 | goto err_close; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1733 | } |
| 1734 | |
| 1735 | /* If the mode USES_PRIMARY, then the new slave gets the |
| 1736 | * master's promisc (and mc) settings only if it becomes the |
| 1737 | * curr_active_slave, and that is taken care of later when calling |
| 1738 | * bond_change_active() |
| 1739 | */ |
| 1740 | if (!USES_PRIMARY(bond->params.mode)) { |
| 1741 | /* set promiscuity level to new slave */ |
| 1742 | if (bond_dev->flags & IFF_PROMISC) { |
Wang Chen | 7e1a1ac | 2008-07-14 20:51:36 -0700 | [diff] [blame] | 1743 | res = dev_set_promiscuity(slave_dev, 1); |
| 1744 | if (res) |
| 1745 | goto err_close; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1746 | } |
| 1747 | |
| 1748 | /* set allmulti level to new slave */ |
| 1749 | if (bond_dev->flags & IFF_ALLMULTI) { |
Wang Chen | 7e1a1ac | 2008-07-14 20:51:36 -0700 | [diff] [blame] | 1750 | res = dev_set_allmulti(slave_dev, 1); |
| 1751 | if (res) |
| 1752 | goto err_close; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1753 | } |
| 1754 | |
David S. Miller | b9e4085 | 2008-07-15 00:15:08 -0700 | [diff] [blame] | 1755 | netif_addr_lock_bh(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1756 | /* upload master's mc_list to new slave */ |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 1757 | netdev_for_each_mc_addr(ha, bond_dev) |
| 1758 | dev_mc_add(slave_dev, ha->addr); |
David S. Miller | b9e4085 | 2008-07-15 00:15:08 -0700 | [diff] [blame] | 1759 | netif_addr_unlock_bh(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1760 | } |
| 1761 | |
| 1762 | if (bond->params.mode == BOND_MODE_8023AD) { |
| 1763 | /* add lacpdu mc addr to mc list */ |
| 1764 | u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR; |
| 1765 | |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 1766 | dev_mc_add(slave_dev, lacpdu_multicast); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1767 | } |
| 1768 | |
| 1769 | bond_add_vlans_on_slave(bond, slave_dev); |
| 1770 | |
| 1771 | write_lock_bh(&bond->lock); |
| 1772 | |
| 1773 | bond_attach_slave(bond, new_slave); |
| 1774 | |
| 1775 | new_slave->delay = 0; |
| 1776 | new_slave->link_failure_count = 0; |
| 1777 | |
Arthur Kepner | 8531c5f | 2005-08-23 01:34:53 -0400 | [diff] [blame] | 1778 | bond_compute_features(bond); |
| 1779 | |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 1780 | write_unlock_bh(&bond->lock); |
| 1781 | |
| 1782 | read_lock(&bond->lock); |
| 1783 | |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 1784 | new_slave->last_arp_rx = jiffies; |
| 1785 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1786 | if (bond->params.miimon && !bond->params.use_carrier) { |
| 1787 | link_reporting = bond_check_dev_link(bond, slave_dev, 1); |
| 1788 | |
| 1789 | if ((link_reporting == -1) && !bond->params.arp_interval) { |
| 1790 | /* |
| 1791 | * miimon is set but a bonded network driver |
| 1792 | * does not support ETHTOOL/MII and |
| 1793 | * arp_interval is not set. Note: if |
| 1794 | * use_carrier is enabled, we will never go |
| 1795 | * here (because netif_carrier is always |
| 1796 | * supported); thus, we don't need to change |
| 1797 | * the messages for netif_carrier. |
| 1798 | */ |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1799 | pr_warning("%s: Warning: MII and ETHTOOL support not available for interface %s, and arp_interval/arp_ip_target module parameters not specified, thus bonding will not detect link failures! see bonding.txt for details.\n", |
Mitch Williams | 4e0952c | 2005-11-09 10:34:57 -0800 | [diff] [blame] | 1800 | bond_dev->name, slave_dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1801 | } else if (link_reporting == -1) { |
| 1802 | /* unable get link status using mii/ethtool */ |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1803 | pr_warning("%s: Warning: can't get link status from interface %s; the network driver associated with this interface does not support MII or ETHTOOL link status reporting, thus miimon has no effect on this interface.\n", |
| 1804 | bond_dev->name, slave_dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1805 | } |
| 1806 | } |
| 1807 | |
| 1808 | /* check for initial state */ |
| 1809 | if (!bond->params.miimon || |
| 1810 | (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS)) { |
| 1811 | if (bond->params.updelay) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1812 | pr_debug("Initial state of slave_dev is BOND_LINK_BACK\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1813 | new_slave->link = BOND_LINK_BACK; |
| 1814 | new_slave->delay = bond->params.updelay; |
| 1815 | } else { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1816 | pr_debug("Initial state of slave_dev is BOND_LINK_UP\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1817 | new_slave->link = BOND_LINK_UP; |
| 1818 | } |
| 1819 | new_slave->jiffies = jiffies; |
| 1820 | } else { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1821 | pr_debug("Initial state of slave_dev is BOND_LINK_DOWN\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1822 | new_slave->link = BOND_LINK_DOWN; |
| 1823 | } |
| 1824 | |
| 1825 | if (bond_update_speed_duplex(new_slave) && |
| 1826 | (new_slave->link != BOND_LINK_DOWN)) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1827 | pr_warning("%s: Warning: failed to get speed and duplex from %s, assumed to be 100Mb/sec and Full.\n", |
| 1828 | bond_dev->name, new_slave->dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1829 | |
| 1830 | if (bond->params.mode == BOND_MODE_8023AD) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1831 | pr_warning("%s: Warning: Operation of 802.3ad mode requires ETHTOOL support in base driver for proper aggregator selection.\n", |
| 1832 | bond_dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1833 | } |
| 1834 | } |
| 1835 | |
| 1836 | if (USES_PRIMARY(bond->params.mode) && bond->params.primary[0]) { |
| 1837 | /* if there is a primary slave, remember it */ |
Jiri Pirko | a549952 | 2009-09-25 03:28:09 +0000 | [diff] [blame] | 1838 | if (strcmp(bond->params.primary, new_slave->dev->name) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1839 | bond->primary_slave = new_slave; |
Jiri Pirko | a549952 | 2009-09-25 03:28:09 +0000 | [diff] [blame] | 1840 | bond->force_primary = true; |
| 1841 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1842 | } |
| 1843 | |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 1844 | write_lock_bh(&bond->curr_slave_lock); |
| 1845 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1846 | switch (bond->params.mode) { |
| 1847 | case BOND_MODE_ACTIVEBACKUP: |
Jay Vosburgh | 8a8e447 | 2006-09-22 21:56:15 -0700 | [diff] [blame] | 1848 | bond_set_slave_inactive_flags(new_slave); |
| 1849 | bond_select_active_slave(bond); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1850 | break; |
| 1851 | case BOND_MODE_8023AD: |
| 1852 | /* in 802.3ad mode, the internal mechanism |
| 1853 | * will activate the slaves in the selected |
| 1854 | * aggregator |
| 1855 | */ |
| 1856 | bond_set_slave_inactive_flags(new_slave); |
| 1857 | /* if this is the first slave */ |
| 1858 | if (bond->slave_cnt == 1) { |
| 1859 | SLAVE_AD_INFO(new_slave).id = 1; |
| 1860 | /* Initialize AD with the number of times that the AD timer is called in 1 second |
| 1861 | * can be called only after the mac address of the bond is set |
| 1862 | */ |
| 1863 | bond_3ad_initialize(bond, 1000/AD_TIMER_INTERVAL, |
| 1864 | bond->params.lacp_fast); |
| 1865 | } else { |
| 1866 | SLAVE_AD_INFO(new_slave).id = |
| 1867 | SLAVE_AD_INFO(new_slave->prev).id + 1; |
| 1868 | } |
| 1869 | |
| 1870 | bond_3ad_bind_slave(new_slave); |
| 1871 | break; |
| 1872 | case BOND_MODE_TLB: |
| 1873 | case BOND_MODE_ALB: |
Jiri Pirko | e30bc06 | 2011-03-12 03:14:37 +0000 | [diff] [blame] | 1874 | bond_set_active_slave(new_slave); |
Jay Vosburgh | 059fe7a | 2007-10-17 17:37:49 -0700 | [diff] [blame] | 1875 | bond_set_slave_inactive_flags(new_slave); |
Jiri Pirko | 5a29f78 | 2009-03-25 17:23:38 -0700 | [diff] [blame] | 1876 | bond_select_active_slave(bond); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1877 | break; |
| 1878 | default: |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 1879 | pr_debug("This slave is always active in trunk mode\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1880 | |
| 1881 | /* always active in trunk mode */ |
Jiri Pirko | e30bc06 | 2011-03-12 03:14:37 +0000 | [diff] [blame] | 1882 | bond_set_active_slave(new_slave); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1883 | |
| 1884 | /* In trunking mode there is little meaning to curr_active_slave |
| 1885 | * anyway (it holds no special properties of the bond device), |
| 1886 | * so we can change it without calling change_active_interface() |
| 1887 | */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1888 | if (!bond->curr_active_slave) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1889 | bond->curr_active_slave = new_slave; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1890 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1891 | break; |
| 1892 | } /* switch(bond_mode) */ |
| 1893 | |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 1894 | write_unlock_bh(&bond->curr_slave_lock); |
| 1895 | |
Jay Vosburgh | ff59c45 | 2006-03-27 13:27:43 -0800 | [diff] [blame] | 1896 | bond_set_carrier(bond); |
| 1897 | |
WANG Cong | f6dc31a | 2010-05-06 00:48:51 -0700 | [diff] [blame] | 1898 | #ifdef CONFIG_NET_POLL_CONTROLLER |
Amerigo Wang | 8a8efa2 | 2011-02-17 23:43:32 +0000 | [diff] [blame] | 1899 | slave_dev->npinfo = bond_netpoll_info(bond); |
| 1900 | if (slave_dev->npinfo) { |
| 1901 | if (slave_enable_netpoll(new_slave)) { |
| 1902 | read_unlock(&bond->lock); |
| 1903 | pr_info("Error, %s: master_dev is using netpoll, " |
| 1904 | "but new slave device does not support netpoll.\n", |
| 1905 | bond_dev->name); |
| 1906 | res = -EBUSY; |
| 1907 | goto err_close; |
| 1908 | } |
WANG Cong | f6dc31a | 2010-05-06 00:48:51 -0700 | [diff] [blame] | 1909 | } |
| 1910 | #endif |
Amerigo Wang | 8a8efa2 | 2011-02-17 23:43:32 +0000 | [diff] [blame] | 1911 | |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 1912 | read_unlock(&bond->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1913 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1914 | res = bond_create_slave_symlinks(bond_dev, slave_dev); |
| 1915 | if (res) |
Jay Vosburgh | 569f0c4 | 2008-05-02 18:06:02 -0700 | [diff] [blame] | 1916 | goto err_close; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1917 | |
Jiri Pirko | 35d4890 | 2011-03-22 02:38:12 +0000 | [diff] [blame] | 1918 | res = netdev_rx_handler_register(slave_dev, bond_handle_frame, |
| 1919 | new_slave); |
| 1920 | if (res) { |
| 1921 | pr_debug("Error %d calling netdev_rx_handler_register\n", res); |
| 1922 | goto err_dest_symlinks; |
| 1923 | } |
| 1924 | |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1925 | pr_info("%s: enslaving %s as a%s interface with a%s link.\n", |
| 1926 | bond_dev->name, slave_dev->name, |
Jiri Pirko | e30bc06 | 2011-03-12 03:14:37 +0000 | [diff] [blame] | 1927 | bond_is_active_slave(new_slave) ? "n active" : " backup", |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1928 | new_slave->link != BOND_LINK_DOWN ? "n up" : " down"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1929 | |
| 1930 | /* enslave is successful */ |
| 1931 | return 0; |
| 1932 | |
| 1933 | /* Undo stages on error */ |
Jiri Pirko | 35d4890 | 2011-03-22 02:38:12 +0000 | [diff] [blame] | 1934 | err_dest_symlinks: |
| 1935 | bond_destroy_slave_symlinks(bond_dev, slave_dev); |
| 1936 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1937 | err_close: |
| 1938 | dev_close(slave_dev); |
| 1939 | |
Jay Vosburgh | 569f0c4 | 2008-05-02 18:06:02 -0700 | [diff] [blame] | 1940 | err_unset_master: |
Jiri Pirko | 1765a57 | 2011-02-12 06:48:36 +0000 | [diff] [blame] | 1941 | netdev_set_bond_master(slave_dev, NULL); |
Jay Vosburgh | 569f0c4 | 2008-05-02 18:06:02 -0700 | [diff] [blame] | 1942 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1943 | err_restore_mac: |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 1944 | if (!bond->params.fail_over_mac) { |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 1945 | /* XXX TODO - fom follow mode needs to change master's |
| 1946 | * MAC if this slave's MAC is in use by the bond, or at |
| 1947 | * least print a warning. |
| 1948 | */ |
Moni Shoua | 2ab8285 | 2007-10-09 19:43:39 -0700 | [diff] [blame] | 1949 | memcpy(addr.sa_data, new_slave->perm_hwaddr, ETH_ALEN); |
| 1950 | addr.sa_family = slave_dev->type; |
| 1951 | dev_set_mac_address(slave_dev, &addr); |
| 1952 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1953 | |
Jiri Pirko | b15ba0f | 2010-05-18 05:42:40 +0000 | [diff] [blame] | 1954 | err_restore_mtu: |
| 1955 | dev_set_mtu(slave_dev, new_slave->original_mtu); |
| 1956 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1957 | err_free: |
| 1958 | kfree(new_slave); |
| 1959 | |
| 1960 | err_undo_flags: |
| 1961 | bond_dev->features = old_features; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1962 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1963 | return res; |
| 1964 | } |
| 1965 | |
| 1966 | /* |
| 1967 | * Try to release the slave device <slave> from the bond device <master> |
| 1968 | * It is legal to access curr_active_slave without a lock because all the function |
| 1969 | * is write-locked. |
| 1970 | * |
| 1971 | * The rules for slave state should be: |
| 1972 | * for Active/Backup: |
| 1973 | * Active stays on all backups go down |
| 1974 | * for Bonded connections: |
| 1975 | * The first up interface should be left on and all others downed. |
| 1976 | */ |
Mitch Williams | a77b532 | 2005-11-09 10:35:51 -0800 | [diff] [blame] | 1977 | int bond_release(struct net_device *bond_dev, struct net_device *slave_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1978 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 1979 | struct bonding *bond = netdev_priv(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1980 | struct slave *slave, *oldcurrent; |
| 1981 | struct sockaddr addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1982 | |
| 1983 | /* slave is not a slave or master is not master of this slave */ |
| 1984 | if (!(slave_dev->flags & IFF_SLAVE) || |
| 1985 | (slave_dev->master != bond_dev)) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1986 | pr_err("%s: Error: cannot release %s.\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1987 | bond_dev->name, slave_dev->name); |
| 1988 | return -EINVAL; |
| 1989 | } |
| 1990 | |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 1991 | block_netpoll_tx(); |
WANG Cong | f6dc31a | 2010-05-06 00:48:51 -0700 | [diff] [blame] | 1992 | netdev_bonding_change(bond_dev, NETDEV_BONDING_DESLAVE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1993 | write_lock_bh(&bond->lock); |
| 1994 | |
| 1995 | slave = bond_get_slave_by_dev(bond, slave_dev); |
| 1996 | if (!slave) { |
| 1997 | /* not a slave of this bond */ |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1998 | pr_info("%s: %s not enslaved\n", |
| 1999 | bond_dev->name, slave_dev->name); |
Jay Vosburgh | f5e2a7b | 2006-02-07 21:17:22 -0800 | [diff] [blame] | 2000 | write_unlock_bh(&bond->lock); |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 2001 | unblock_netpoll_tx(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2002 | return -EINVAL; |
| 2003 | } |
| 2004 | |
Jiri Pirko | 35d4890 | 2011-03-22 02:38:12 +0000 | [diff] [blame] | 2005 | /* unregister rx_handler early so bond_handle_frame wouldn't be called |
| 2006 | * for this slave anymore. |
| 2007 | */ |
| 2008 | netdev_rx_handler_unregister(slave_dev); |
| 2009 | write_unlock_bh(&bond->lock); |
| 2010 | synchronize_net(); |
| 2011 | write_lock_bh(&bond->lock); |
| 2012 | |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 2013 | if (!bond->params.fail_over_mac) { |
Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 2014 | if (!compare_ether_addr(bond_dev->dev_addr, slave->perm_hwaddr) && |
| 2015 | bond->slave_cnt > 1) |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2016 | pr_warning("%s: Warning: the permanent HWaddr of %s - %pM - is still in use by %s. Set the HWaddr of %s to a different address to avoid conflicts.\n", |
| 2017 | bond_dev->name, slave_dev->name, |
| 2018 | slave->perm_hwaddr, |
| 2019 | bond_dev->name, slave_dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2020 | } |
| 2021 | |
| 2022 | /* Inform AD package of unbinding of slave. */ |
| 2023 | if (bond->params.mode == BOND_MODE_8023AD) { |
| 2024 | /* must be called before the slave is |
| 2025 | * detached from the list |
| 2026 | */ |
| 2027 | bond_3ad_unbind_slave(slave); |
| 2028 | } |
| 2029 | |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2030 | pr_info("%s: releasing %s interface %s\n", |
| 2031 | bond_dev->name, |
Jiri Pirko | e30bc06 | 2011-03-12 03:14:37 +0000 | [diff] [blame] | 2032 | bond_is_active_slave(slave) ? "active" : "backup", |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2033 | slave_dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2034 | |
| 2035 | oldcurrent = bond->curr_active_slave; |
| 2036 | |
| 2037 | bond->current_arp_slave = NULL; |
| 2038 | |
| 2039 | /* release the slave from its bond */ |
| 2040 | bond_detach_slave(bond, slave); |
| 2041 | |
Arthur Kepner | 8531c5f | 2005-08-23 01:34:53 -0400 | [diff] [blame] | 2042 | bond_compute_features(bond); |
| 2043 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 2044 | if (bond->primary_slave == slave) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2045 | bond->primary_slave = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2046 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 2047 | if (oldcurrent == slave) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2048 | bond_change_active_slave(bond, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2049 | |
Holger Eitzenberger | 5840205 | 2008-12-09 23:07:13 -0800 | [diff] [blame] | 2050 | if (bond_is_lb(bond)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2051 | /* Must be called only after the slave has been |
| 2052 | * detached from the list and the curr_active_slave |
| 2053 | * has been cleared (if our_slave == old_current), |
| 2054 | * but before a new active slave is selected. |
| 2055 | */ |
Jay Vosburgh | 2543331 | 2008-01-17 16:24:59 -0800 | [diff] [blame] | 2056 | write_unlock_bh(&bond->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2057 | bond_alb_deinit_slave(bond, slave); |
Jay Vosburgh | 2543331 | 2008-01-17 16:24:59 -0800 | [diff] [blame] | 2058 | write_lock_bh(&bond->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2059 | } |
| 2060 | |
Jay Vosburgh | 059fe7a | 2007-10-17 17:37:49 -0700 | [diff] [blame] | 2061 | if (oldcurrent == slave) { |
| 2062 | /* |
| 2063 | * Note that we hold RTNL over this sequence, so there |
| 2064 | * is no concern that another slave add/remove event |
| 2065 | * will interfere. |
| 2066 | */ |
| 2067 | write_unlock_bh(&bond->lock); |
| 2068 | read_lock(&bond->lock); |
| 2069 | write_lock_bh(&bond->curr_slave_lock); |
| 2070 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2071 | bond_select_active_slave(bond); |
| 2072 | |
Jay Vosburgh | 059fe7a | 2007-10-17 17:37:49 -0700 | [diff] [blame] | 2073 | write_unlock_bh(&bond->curr_slave_lock); |
| 2074 | read_unlock(&bond->lock); |
| 2075 | write_lock_bh(&bond->lock); |
| 2076 | } |
| 2077 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2078 | if (bond->slave_cnt == 0) { |
Jay Vosburgh | ff59c45 | 2006-03-27 13:27:43 -0800 | [diff] [blame] | 2079 | bond_set_carrier(bond); |
| 2080 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2081 | /* if the last slave was removed, zero the mac address |
| 2082 | * of the master so it will be set by the application |
| 2083 | * to the mac address of the first slave |
| 2084 | */ |
| 2085 | memset(bond_dev->dev_addr, 0, bond_dev->addr_len); |
| 2086 | |
Jay Vosburgh | f35188f | 2010-07-21 12:14:47 +0000 | [diff] [blame] | 2087 | if (!bond->vlgrp) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2088 | bond_dev->features |= NETIF_F_VLAN_CHALLENGED; |
| 2089 | } else { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2090 | pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n", |
| 2091 | bond_dev->name, bond_dev->name); |
| 2092 | pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n", |
| 2093 | bond_dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2094 | } |
| 2095 | } else if ((bond_dev->features & NETIF_F_VLAN_CHALLENGED) && |
| 2096 | !bond_has_challenged_slaves(bond)) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2097 | pr_info("%s: last VLAN challenged slave %s left bond %s. VLAN blocking is removed\n", |
| 2098 | bond_dev->name, slave_dev->name, bond_dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2099 | bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED; |
| 2100 | } |
| 2101 | |
| 2102 | write_unlock_bh(&bond->lock); |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 2103 | unblock_netpoll_tx(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2104 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 2105 | /* must do this from outside any spinlocks */ |
| 2106 | bond_destroy_slave_symlinks(bond_dev, slave_dev); |
| 2107 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2108 | bond_del_vlans_from_slave(bond, slave_dev); |
| 2109 | |
| 2110 | /* If the mode USES_PRIMARY, then we should only remove its |
| 2111 | * promisc and mc settings if it was the curr_active_slave, but that was |
| 2112 | * already taken care of above when we detached the slave |
| 2113 | */ |
| 2114 | if (!USES_PRIMARY(bond->params.mode)) { |
| 2115 | /* unset promiscuity level from slave */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 2116 | if (bond_dev->flags & IFF_PROMISC) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2117 | dev_set_promiscuity(slave_dev, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2118 | |
| 2119 | /* unset allmulti level from slave */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 2120 | if (bond_dev->flags & IFF_ALLMULTI) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2121 | dev_set_allmulti(slave_dev, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2122 | |
| 2123 | /* flush master's mc_list from slave */ |
David S. Miller | b9e4085 | 2008-07-15 00:15:08 -0700 | [diff] [blame] | 2124 | netif_addr_lock_bh(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2125 | bond_mc_list_flush(bond_dev, slave_dev); |
David S. Miller | b9e4085 | 2008-07-15 00:15:08 -0700 | [diff] [blame] | 2126 | netif_addr_unlock_bh(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2127 | } |
| 2128 | |
Jiri Pirko | 1765a57 | 2011-02-12 06:48:36 +0000 | [diff] [blame] | 2129 | netdev_set_bond_master(slave_dev, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2130 | |
Amerigo Wang | 8a8efa2 | 2011-02-17 23:43:32 +0000 | [diff] [blame] | 2131 | slave_disable_netpoll(slave); |
WANG Cong | f6dc31a | 2010-05-06 00:48:51 -0700 | [diff] [blame] | 2132 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2133 | /* close slave before restoring its mac address */ |
| 2134 | dev_close(slave_dev); |
| 2135 | |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 2136 | if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) { |
Moni Shoua | 2ab8285 | 2007-10-09 19:43:39 -0700 | [diff] [blame] | 2137 | /* restore original ("permanent") mac address */ |
| 2138 | memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN); |
| 2139 | addr.sa_family = slave_dev->type; |
| 2140 | dev_set_mac_address(slave_dev, &addr); |
| 2141 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2142 | |
Jiri Pirko | b15ba0f | 2010-05-18 05:42:40 +0000 | [diff] [blame] | 2143 | dev_set_mtu(slave_dev, slave->original_mtu); |
| 2144 | |
Jiri Pirko | 2d7011c | 2011-03-16 08:46:43 +0000 | [diff] [blame] | 2145 | slave_dev->priv_flags &= ~IFF_BONDING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2146 | |
| 2147 | kfree(slave); |
| 2148 | |
| 2149 | return 0; /* deletion OK */ |
| 2150 | } |
| 2151 | |
| 2152 | /* |
Nicolas de Pesloüan | dadaa10 | 2011-03-19 13:36:18 -0700 | [diff] [blame] | 2153 | * First release a slave and then destroy the bond if no more slaves are left. |
Moni Shoua | d90a162 | 2007-10-09 19:43:43 -0700 | [diff] [blame] | 2154 | * Must be under rtnl_lock when this function is called. |
| 2155 | */ |
stephen hemminger | 26d8ee7 | 2010-10-15 05:09:34 +0000 | [diff] [blame] | 2156 | static int bond_release_and_destroy(struct net_device *bond_dev, |
| 2157 | struct net_device *slave_dev) |
Moni Shoua | d90a162 | 2007-10-09 19:43:43 -0700 | [diff] [blame] | 2158 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 2159 | struct bonding *bond = netdev_priv(bond_dev); |
Moni Shoua | d90a162 | 2007-10-09 19:43:43 -0700 | [diff] [blame] | 2160 | int ret; |
| 2161 | |
| 2162 | ret = bond_release(bond_dev, slave_dev); |
| 2163 | if ((ret == 0) && (bond->slave_cnt == 0)) { |
Amerigo Wang | 8a8efa2 | 2011-02-17 23:43:32 +0000 | [diff] [blame] | 2164 | bond_dev->priv_flags |= IFF_DISABLE_NETPOLL; |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2165 | pr_info("%s: destroying bond %s.\n", |
| 2166 | bond_dev->name, bond_dev->name); |
Stephen Hemminger | 9e71626 | 2009-06-12 19:02:47 +0000 | [diff] [blame] | 2167 | unregister_netdevice(bond_dev); |
Moni Shoua | d90a162 | 2007-10-09 19:43:43 -0700 | [diff] [blame] | 2168 | } |
| 2169 | return ret; |
| 2170 | } |
| 2171 | |
| 2172 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2173 | * This function releases all slaves. |
| 2174 | */ |
| 2175 | static int bond_release_all(struct net_device *bond_dev) |
| 2176 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 2177 | struct bonding *bond = netdev_priv(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2178 | struct slave *slave; |
| 2179 | struct net_device *slave_dev; |
| 2180 | struct sockaddr addr; |
| 2181 | |
| 2182 | write_lock_bh(&bond->lock); |
| 2183 | |
Jay Vosburgh | ff59c45 | 2006-03-27 13:27:43 -0800 | [diff] [blame] | 2184 | netif_carrier_off(bond_dev); |
| 2185 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 2186 | if (bond->slave_cnt == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2187 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2188 | |
| 2189 | bond->current_arp_slave = NULL; |
| 2190 | bond->primary_slave = NULL; |
| 2191 | bond_change_active_slave(bond, NULL); |
| 2192 | |
| 2193 | while ((slave = bond->first_slave) != NULL) { |
| 2194 | /* Inform AD package of unbinding of slave |
| 2195 | * before slave is detached from the list. |
| 2196 | */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 2197 | if (bond->params.mode == BOND_MODE_8023AD) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2198 | bond_3ad_unbind_slave(slave); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2199 | |
| 2200 | slave_dev = slave->dev; |
| 2201 | bond_detach_slave(bond, slave); |
| 2202 | |
Jay Vosburgh | 2543331 | 2008-01-17 16:24:59 -0800 | [diff] [blame] | 2203 | /* now that the slave is detached, unlock and perform |
| 2204 | * all the undo steps that should not be called from |
| 2205 | * within a lock. |
| 2206 | */ |
| 2207 | write_unlock_bh(&bond->lock); |
| 2208 | |
Jiri Pirko | 35d4890 | 2011-03-22 02:38:12 +0000 | [diff] [blame] | 2209 | /* unregister rx_handler early so bond_handle_frame wouldn't |
| 2210 | * be called for this slave anymore. |
| 2211 | */ |
| 2212 | netdev_rx_handler_unregister(slave_dev); |
| 2213 | synchronize_net(); |
| 2214 | |
Holger Eitzenberger | 5840205 | 2008-12-09 23:07:13 -0800 | [diff] [blame] | 2215 | if (bond_is_lb(bond)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2216 | /* must be called only after the slave |
| 2217 | * has been detached from the list |
| 2218 | */ |
| 2219 | bond_alb_deinit_slave(bond, slave); |
| 2220 | } |
| 2221 | |
Arthur Kepner | 8531c5f | 2005-08-23 01:34:53 -0400 | [diff] [blame] | 2222 | bond_compute_features(bond); |
| 2223 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 2224 | bond_destroy_slave_symlinks(bond_dev, slave_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2225 | bond_del_vlans_from_slave(bond, slave_dev); |
| 2226 | |
| 2227 | /* If the mode USES_PRIMARY, then we should only remove its |
| 2228 | * promisc and mc settings if it was the curr_active_slave, but that was |
| 2229 | * already taken care of above when we detached the slave |
| 2230 | */ |
| 2231 | if (!USES_PRIMARY(bond->params.mode)) { |
| 2232 | /* unset promiscuity level from slave */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 2233 | if (bond_dev->flags & IFF_PROMISC) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2234 | dev_set_promiscuity(slave_dev, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2235 | |
| 2236 | /* unset allmulti level from slave */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 2237 | if (bond_dev->flags & IFF_ALLMULTI) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2238 | dev_set_allmulti(slave_dev, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2239 | |
| 2240 | /* flush master's mc_list from slave */ |
David S. Miller | b9e4085 | 2008-07-15 00:15:08 -0700 | [diff] [blame] | 2241 | netif_addr_lock_bh(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2242 | bond_mc_list_flush(bond_dev, slave_dev); |
David S. Miller | b9e4085 | 2008-07-15 00:15:08 -0700 | [diff] [blame] | 2243 | netif_addr_unlock_bh(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2244 | } |
| 2245 | |
Jiri Pirko | 1765a57 | 2011-02-12 06:48:36 +0000 | [diff] [blame] | 2246 | netdev_set_bond_master(slave_dev, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2247 | |
Amerigo Wang | 8a8efa2 | 2011-02-17 23:43:32 +0000 | [diff] [blame] | 2248 | slave_disable_netpoll(slave); |
| 2249 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2250 | /* close slave before restoring its mac address */ |
| 2251 | dev_close(slave_dev); |
| 2252 | |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 2253 | if (!bond->params.fail_over_mac) { |
Moni Shoua | 2ab8285 | 2007-10-09 19:43:39 -0700 | [diff] [blame] | 2254 | /* restore original ("permanent") mac address*/ |
| 2255 | memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN); |
| 2256 | addr.sa_family = slave_dev->type; |
| 2257 | dev_set_mac_address(slave_dev, &addr); |
| 2258 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2259 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2260 | kfree(slave); |
| 2261 | |
| 2262 | /* re-acquire the lock before getting the next slave */ |
| 2263 | write_lock_bh(&bond->lock); |
| 2264 | } |
| 2265 | |
| 2266 | /* zero the mac address of the master so it will be |
| 2267 | * set by the application to the mac address of the |
| 2268 | * first slave |
| 2269 | */ |
| 2270 | memset(bond_dev->dev_addr, 0, bond_dev->addr_len); |
| 2271 | |
Jay Vosburgh | f35188f | 2010-07-21 12:14:47 +0000 | [diff] [blame] | 2272 | if (!bond->vlgrp) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2273 | bond_dev->features |= NETIF_F_VLAN_CHALLENGED; |
Jay Vosburgh | f35188f | 2010-07-21 12:14:47 +0000 | [diff] [blame] | 2274 | } else { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2275 | pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n", |
| 2276 | bond_dev->name, bond_dev->name); |
| 2277 | pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n", |
| 2278 | bond_dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2279 | } |
| 2280 | |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2281 | pr_info("%s: released all slaves\n", bond_dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2282 | |
| 2283 | out: |
| 2284 | write_unlock_bh(&bond->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2285 | return 0; |
| 2286 | } |
| 2287 | |
| 2288 | /* |
| 2289 | * This function changes the active slave to slave <slave_dev>. |
| 2290 | * It returns -EINVAL in the following cases. |
| 2291 | * - <slave_dev> is not found in the list. |
| 2292 | * - There is not active slave now. |
| 2293 | * - <slave_dev> is already active. |
| 2294 | * - The link state of <slave_dev> is not BOND_LINK_UP. |
| 2295 | * - <slave_dev> is not running. |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 2296 | * In these cases, this function does nothing. |
| 2297 | * In the other cases, current_slave pointer is changed and 0 is returned. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2298 | */ |
| 2299 | static int bond_ioctl_change_active(struct net_device *bond_dev, struct net_device *slave_dev) |
| 2300 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 2301 | struct bonding *bond = netdev_priv(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2302 | struct slave *old_active = NULL; |
| 2303 | struct slave *new_active = NULL; |
| 2304 | int res = 0; |
| 2305 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 2306 | if (!USES_PRIMARY(bond->params.mode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2307 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2308 | |
| 2309 | /* Verify that master_dev is indeed the master of slave_dev */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 2310 | if (!(slave_dev->flags & IFF_SLAVE) || (slave_dev->master != bond_dev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2311 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2312 | |
Jay Vosburgh | 059fe7a | 2007-10-17 17:37:49 -0700 | [diff] [blame] | 2313 | read_lock(&bond->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2314 | |
Jay Vosburgh | 059fe7a | 2007-10-17 17:37:49 -0700 | [diff] [blame] | 2315 | read_lock(&bond->curr_slave_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2316 | old_active = bond->curr_active_slave; |
Jay Vosburgh | 059fe7a | 2007-10-17 17:37:49 -0700 | [diff] [blame] | 2317 | read_unlock(&bond->curr_slave_lock); |
| 2318 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2319 | new_active = bond_get_slave_by_dev(bond, slave_dev); |
| 2320 | |
| 2321 | /* |
| 2322 | * Changing to the current active: do nothing; return success. |
| 2323 | */ |
| 2324 | if (new_active && (new_active == old_active)) { |
Jay Vosburgh | 059fe7a | 2007-10-17 17:37:49 -0700 | [diff] [blame] | 2325 | read_unlock(&bond->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2326 | return 0; |
| 2327 | } |
| 2328 | |
| 2329 | if ((new_active) && |
| 2330 | (old_active) && |
| 2331 | (new_active->link == BOND_LINK_UP) && |
| 2332 | IS_UP(new_active->dev)) { |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 2333 | block_netpoll_tx(); |
Jay Vosburgh | 059fe7a | 2007-10-17 17:37:49 -0700 | [diff] [blame] | 2334 | write_lock_bh(&bond->curr_slave_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2335 | bond_change_active_slave(bond, new_active); |
Jay Vosburgh | 059fe7a | 2007-10-17 17:37:49 -0700 | [diff] [blame] | 2336 | write_unlock_bh(&bond->curr_slave_lock); |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 2337 | unblock_netpoll_tx(); |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 2338 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2339 | res = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2340 | |
Jay Vosburgh | 059fe7a | 2007-10-17 17:37:49 -0700 | [diff] [blame] | 2341 | read_unlock(&bond->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2342 | |
| 2343 | return res; |
| 2344 | } |
| 2345 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2346 | static int bond_info_query(struct net_device *bond_dev, struct ifbond *info) |
| 2347 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 2348 | struct bonding *bond = netdev_priv(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2349 | |
| 2350 | info->bond_mode = bond->params.mode; |
| 2351 | info->miimon = bond->params.miimon; |
| 2352 | |
Jay Vosburgh | 6603a6f | 2007-10-17 17:37:50 -0700 | [diff] [blame] | 2353 | read_lock(&bond->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2354 | info->num_slaves = bond->slave_cnt; |
Jay Vosburgh | 6603a6f | 2007-10-17 17:37:50 -0700 | [diff] [blame] | 2355 | read_unlock(&bond->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2356 | |
| 2357 | return 0; |
| 2358 | } |
| 2359 | |
| 2360 | static int bond_slave_info_query(struct net_device *bond_dev, struct ifslave *info) |
| 2361 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 2362 | struct bonding *bond = netdev_priv(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2363 | struct slave *slave; |
Eric Dumazet | 689c96c | 2009-04-23 03:39:04 +0000 | [diff] [blame] | 2364 | int i, res = -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2365 | |
Jay Vosburgh | 6603a6f | 2007-10-17 17:37:50 -0700 | [diff] [blame] | 2366 | read_lock(&bond->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2367 | |
| 2368 | bond_for_each_slave(bond, slave, i) { |
| 2369 | if (i == (int)info->slave_id) { |
Eric Dumazet | 689c96c | 2009-04-23 03:39:04 +0000 | [diff] [blame] | 2370 | res = 0; |
| 2371 | strcpy(info->slave_name, slave->dev->name); |
| 2372 | info->link = slave->link; |
Jiri Pirko | e30bc06 | 2011-03-12 03:14:37 +0000 | [diff] [blame] | 2373 | info->state = bond_slave_state(slave); |
Eric Dumazet | 689c96c | 2009-04-23 03:39:04 +0000 | [diff] [blame] | 2374 | info->link_failure_count = slave->link_failure_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2375 | break; |
| 2376 | } |
| 2377 | } |
| 2378 | |
Jay Vosburgh | 6603a6f | 2007-10-17 17:37:50 -0700 | [diff] [blame] | 2379 | read_unlock(&bond->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2380 | |
Eric Dumazet | 689c96c | 2009-04-23 03:39:04 +0000 | [diff] [blame] | 2381 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2382 | } |
| 2383 | |
| 2384 | /*-------------------------------- Monitoring -------------------------------*/ |
| 2385 | |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2386 | |
| 2387 | static int bond_miimon_inspect(struct bonding *bond) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2388 | { |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2389 | struct slave *slave; |
| 2390 | int i, link_state, commit = 0; |
Jiri Pirko | 41f8910 | 2009-04-24 03:57:29 +0000 | [diff] [blame] | 2391 | bool ignore_updelay; |
| 2392 | |
| 2393 | ignore_updelay = !bond->curr_active_slave ? true : false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2394 | |
| 2395 | bond_for_each_slave(bond, slave, i) { |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2396 | slave->new_link = BOND_LINK_NOCHANGE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2397 | |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2398 | link_state = bond_check_dev_link(bond, slave->dev, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2399 | |
| 2400 | switch (slave->link) { |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2401 | case BOND_LINK_UP: |
| 2402 | if (link_state) |
| 2403 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2404 | |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2405 | slave->link = BOND_LINK_FAIL; |
| 2406 | slave->delay = bond->params.downdelay; |
| 2407 | if (slave->delay) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2408 | pr_info("%s: link status down for %sinterface %s, disabling it in %d ms.\n", |
| 2409 | bond->dev->name, |
| 2410 | (bond->params.mode == |
| 2411 | BOND_MODE_ACTIVEBACKUP) ? |
Jiri Pirko | e30bc06 | 2011-03-12 03:14:37 +0000 | [diff] [blame] | 2412 | (bond_is_active_slave(slave) ? |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2413 | "active " : "backup ") : "", |
| 2414 | slave->dev->name, |
| 2415 | bond->params.downdelay * bond->params.miimon); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2416 | } |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2417 | /*FALLTHRU*/ |
| 2418 | case BOND_LINK_FAIL: |
| 2419 | if (link_state) { |
| 2420 | /* |
| 2421 | * recovered before downdelay expired |
| 2422 | */ |
| 2423 | slave->link = BOND_LINK_UP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2424 | slave->jiffies = jiffies; |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2425 | pr_info("%s: link status up again after %d ms for interface %s.\n", |
| 2426 | bond->dev->name, |
| 2427 | (bond->params.downdelay - slave->delay) * |
| 2428 | bond->params.miimon, |
| 2429 | slave->dev->name); |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2430 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2431 | } |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2432 | |
| 2433 | if (slave->delay <= 0) { |
| 2434 | slave->new_link = BOND_LINK_DOWN; |
| 2435 | commit++; |
| 2436 | continue; |
| 2437 | } |
| 2438 | |
| 2439 | slave->delay--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2440 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2441 | |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2442 | case BOND_LINK_DOWN: |
| 2443 | if (!link_state) |
| 2444 | continue; |
| 2445 | |
| 2446 | slave->link = BOND_LINK_BACK; |
| 2447 | slave->delay = bond->params.updelay; |
| 2448 | |
| 2449 | if (slave->delay) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2450 | pr_info("%s: link status up for interface %s, enabling it in %d ms.\n", |
| 2451 | bond->dev->name, slave->dev->name, |
| 2452 | ignore_updelay ? 0 : |
| 2453 | bond->params.updelay * |
| 2454 | bond->params.miimon); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2455 | } |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2456 | /*FALLTHRU*/ |
| 2457 | case BOND_LINK_BACK: |
| 2458 | if (!link_state) { |
| 2459 | slave->link = BOND_LINK_DOWN; |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2460 | pr_info("%s: link status down again after %d ms for interface %s.\n", |
| 2461 | bond->dev->name, |
| 2462 | (bond->params.updelay - slave->delay) * |
| 2463 | bond->params.miimon, |
| 2464 | slave->dev->name); |
Jay Vosburgh | 0b0eef6 | 2007-10-17 17:37:48 -0700 | [diff] [blame] | 2465 | |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2466 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2467 | } |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2468 | |
Jiri Pirko | 41f8910 | 2009-04-24 03:57:29 +0000 | [diff] [blame] | 2469 | if (ignore_updelay) |
| 2470 | slave->delay = 0; |
| 2471 | |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2472 | if (slave->delay <= 0) { |
| 2473 | slave->new_link = BOND_LINK_UP; |
| 2474 | commit++; |
Jiri Pirko | 41f8910 | 2009-04-24 03:57:29 +0000 | [diff] [blame] | 2475 | ignore_updelay = false; |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2476 | continue; |
| 2477 | } |
| 2478 | |
| 2479 | slave->delay--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2480 | break; |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2481 | } |
| 2482 | } |
| 2483 | |
| 2484 | return commit; |
| 2485 | } |
| 2486 | |
| 2487 | static void bond_miimon_commit(struct bonding *bond) |
| 2488 | { |
| 2489 | struct slave *slave; |
| 2490 | int i; |
| 2491 | |
| 2492 | bond_for_each_slave(bond, slave, i) { |
| 2493 | switch (slave->new_link) { |
| 2494 | case BOND_LINK_NOCHANGE: |
| 2495 | continue; |
| 2496 | |
| 2497 | case BOND_LINK_UP: |
| 2498 | slave->link = BOND_LINK_UP; |
| 2499 | slave->jiffies = jiffies; |
| 2500 | |
| 2501 | if (bond->params.mode == BOND_MODE_8023AD) { |
| 2502 | /* prevent it from being the active one */ |
Jiri Pirko | e30bc06 | 2011-03-12 03:14:37 +0000 | [diff] [blame] | 2503 | bond_set_backup_slave(slave); |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2504 | } else if (bond->params.mode != BOND_MODE_ACTIVEBACKUP) { |
| 2505 | /* make it immediately active */ |
Jiri Pirko | e30bc06 | 2011-03-12 03:14:37 +0000 | [diff] [blame] | 2506 | bond_set_active_slave(slave); |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2507 | } else if (slave != bond->primary_slave) { |
| 2508 | /* prevent it from being the active one */ |
Jiri Pirko | e30bc06 | 2011-03-12 03:14:37 +0000 | [diff] [blame] | 2509 | bond_set_backup_slave(slave); |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2510 | } |
| 2511 | |
Krzysztof Piotr Oledzki | 546add7 | 2010-10-06 14:28:22 -0700 | [diff] [blame] | 2512 | bond_update_speed_duplex(slave); |
| 2513 | |
David Decotigny | 5d30530 | 2011-04-13 15:22:31 +0000 | [diff] [blame] | 2514 | pr_info("%s: link status definitely up for interface %s, %u Mbps %s duplex.\n", |
Krzysztof Piotr Oledzki | 700c2a7 | 2010-10-06 14:25:06 -0700 | [diff] [blame] | 2515 | bond->dev->name, slave->dev->name, |
| 2516 | slave->speed, slave->duplex ? "full" : "half"); |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2517 | |
| 2518 | /* notify ad that the link status has changed */ |
| 2519 | if (bond->params.mode == BOND_MODE_8023AD) |
| 2520 | bond_3ad_handle_link_change(slave, BOND_LINK_UP); |
| 2521 | |
Holger Eitzenberger | 5840205 | 2008-12-09 23:07:13 -0800 | [diff] [blame] | 2522 | if (bond_is_lb(bond)) |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2523 | bond_alb_handle_link_change(bond, slave, |
| 2524 | BOND_LINK_UP); |
| 2525 | |
| 2526 | if (!bond->curr_active_slave || |
| 2527 | (slave == bond->primary_slave)) |
| 2528 | goto do_failover; |
| 2529 | |
| 2530 | continue; |
| 2531 | |
| 2532 | case BOND_LINK_DOWN: |
Jay Vosburgh | fba4acd | 2008-10-30 17:41:14 -0700 | [diff] [blame] | 2533 | if (slave->link_failure_count < UINT_MAX) |
| 2534 | slave->link_failure_count++; |
| 2535 | |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2536 | slave->link = BOND_LINK_DOWN; |
| 2537 | |
| 2538 | if (bond->params.mode == BOND_MODE_ACTIVEBACKUP || |
| 2539 | bond->params.mode == BOND_MODE_8023AD) |
| 2540 | bond_set_slave_inactive_flags(slave); |
| 2541 | |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2542 | pr_info("%s: link status definitely down for interface %s, disabling it\n", |
| 2543 | bond->dev->name, slave->dev->name); |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2544 | |
| 2545 | if (bond->params.mode == BOND_MODE_8023AD) |
| 2546 | bond_3ad_handle_link_change(slave, |
| 2547 | BOND_LINK_DOWN); |
| 2548 | |
Jiri Pirko | ae63e80 | 2009-05-27 05:42:36 +0000 | [diff] [blame] | 2549 | if (bond_is_lb(bond)) |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2550 | bond_alb_handle_link_change(bond, slave, |
| 2551 | BOND_LINK_DOWN); |
| 2552 | |
| 2553 | if (slave == bond->curr_active_slave) |
| 2554 | goto do_failover; |
| 2555 | |
| 2556 | continue; |
| 2557 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2558 | default: |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2559 | pr_err("%s: invalid new link %d on slave %s\n", |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2560 | bond->dev->name, slave->new_link, |
| 2561 | slave->dev->name); |
| 2562 | slave->new_link = BOND_LINK_NOCHANGE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2563 | |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2564 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2565 | } |
| 2566 | |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2567 | do_failover: |
Jay Vosburgh | 059fe7a | 2007-10-17 17:37:49 -0700 | [diff] [blame] | 2568 | ASSERT_RTNL(); |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 2569 | block_netpoll_tx(); |
Jay Vosburgh | 059fe7a | 2007-10-17 17:37:49 -0700 | [diff] [blame] | 2570 | write_lock_bh(&bond->curr_slave_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2571 | bond_select_active_slave(bond); |
Jay Vosburgh | 059fe7a | 2007-10-17 17:37:49 -0700 | [diff] [blame] | 2572 | write_unlock_bh(&bond->curr_slave_lock); |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 2573 | unblock_netpoll_tx(); |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2574 | } |
Jay Vosburgh | 059fe7a | 2007-10-17 17:37:49 -0700 | [diff] [blame] | 2575 | |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2576 | bond_set_carrier(bond); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2577 | } |
| 2578 | |
Jay Vosburgh | 0b0eef6 | 2007-10-17 17:37:48 -0700 | [diff] [blame] | 2579 | /* |
| 2580 | * bond_mii_monitor |
| 2581 | * |
| 2582 | * Really a wrapper that splits the mii monitor into two phases: an |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2583 | * inspection, then (if inspection indicates something needs to be done) |
| 2584 | * an acquisition of appropriate locks followed by a commit phase to |
| 2585 | * implement whatever link state changes are indicated. |
Jay Vosburgh | 0b0eef6 | 2007-10-17 17:37:48 -0700 | [diff] [blame] | 2586 | */ |
| 2587 | void bond_mii_monitor(struct work_struct *work) |
| 2588 | { |
| 2589 | struct bonding *bond = container_of(work, struct bonding, |
| 2590 | mii_work.work); |
Ben Hutchings | ad246c9 | 2011-04-26 15:25:52 +0000 | [diff] [blame] | 2591 | bool should_notify_peers = false; |
Jay Vosburgh | 0b0eef6 | 2007-10-17 17:37:48 -0700 | [diff] [blame] | 2592 | |
| 2593 | read_lock(&bond->lock); |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2594 | if (bond->kill_timers) |
| 2595 | goto out; |
| 2596 | |
| 2597 | if (bond->slave_cnt == 0) |
| 2598 | goto re_arm; |
Jay Vosburgh | b59f9f7 | 2008-06-13 18:12:03 -0700 | [diff] [blame] | 2599 | |
Ben Hutchings | ad246c9 | 2011-04-26 15:25:52 +0000 | [diff] [blame] | 2600 | should_notify_peers = bond_should_notify_peers(bond); |
| 2601 | |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2602 | if (bond_miimon_inspect(bond)) { |
Jay Vosburgh | 0b0eef6 | 2007-10-17 17:37:48 -0700 | [diff] [blame] | 2603 | read_unlock(&bond->lock); |
| 2604 | rtnl_lock(); |
| 2605 | read_lock(&bond->lock); |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2606 | |
| 2607 | bond_miimon_commit(bond); |
| 2608 | |
Jay Vosburgh | 5655662 | 2008-01-17 16:25:03 -0800 | [diff] [blame] | 2609 | read_unlock(&bond->lock); |
| 2610 | rtnl_unlock(); /* might sleep, hold no other locks */ |
| 2611 | read_lock(&bond->lock); |
Jay Vosburgh | 0b0eef6 | 2007-10-17 17:37:48 -0700 | [diff] [blame] | 2612 | } |
| 2613 | |
Jay Vosburgh | f0c76d6 | 2008-07-02 18:21:58 -0700 | [diff] [blame] | 2614 | re_arm: |
| 2615 | if (bond->params.miimon) |
| 2616 | queue_delayed_work(bond->wq, &bond->mii_work, |
| 2617 | msecs_to_jiffies(bond->params.miimon)); |
| 2618 | out: |
Jay Vosburgh | 0b0eef6 | 2007-10-17 17:37:48 -0700 | [diff] [blame] | 2619 | read_unlock(&bond->lock); |
Ben Hutchings | ad246c9 | 2011-04-26 15:25:52 +0000 | [diff] [blame] | 2620 | |
| 2621 | if (should_notify_peers) { |
| 2622 | rtnl_lock(); |
| 2623 | netdev_bonding_change(bond->dev, NETDEV_NOTIFY_PEERS); |
| 2624 | rtnl_unlock(); |
| 2625 | } |
Jay Vosburgh | 0b0eef6 | 2007-10-17 17:37:48 -0700 | [diff] [blame] | 2626 | } |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 2627 | |
Al Viro | d3bb52b | 2007-08-22 20:06:58 -0400 | [diff] [blame] | 2628 | static __be32 bond_glean_dev_ip(struct net_device *dev) |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 2629 | { |
| 2630 | struct in_device *idev; |
| 2631 | struct in_ifaddr *ifa; |
Al Viro | a144ea4 | 2006-09-28 18:00:55 -0700 | [diff] [blame] | 2632 | __be32 addr = 0; |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 2633 | |
| 2634 | if (!dev) |
| 2635 | return 0; |
| 2636 | |
| 2637 | rcu_read_lock(); |
Herbert Xu | e5ed639 | 2005-10-03 14:35:55 -0700 | [diff] [blame] | 2638 | idev = __in_dev_get_rcu(dev); |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 2639 | if (!idev) |
| 2640 | goto out; |
| 2641 | |
| 2642 | ifa = idev->ifa_list; |
| 2643 | if (!ifa) |
| 2644 | goto out; |
| 2645 | |
| 2646 | addr = ifa->ifa_local; |
| 2647 | out: |
| 2648 | rcu_read_unlock(); |
| 2649 | return addr; |
| 2650 | } |
| 2651 | |
Al Viro | d3bb52b | 2007-08-22 20:06:58 -0400 | [diff] [blame] | 2652 | static int bond_has_this_ip(struct bonding *bond, __be32 ip) |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 2653 | { |
Pavel Emelyanov | 0883bec | 2008-05-17 21:10:10 -0700 | [diff] [blame] | 2654 | struct vlan_entry *vlan; |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 2655 | |
| 2656 | if (ip == bond->master_ip) |
| 2657 | return 1; |
| 2658 | |
Pavel Emelyanov | 0883bec | 2008-05-17 21:10:10 -0700 | [diff] [blame] | 2659 | list_for_each_entry(vlan, &bond->vlan_list, vlan_list) { |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 2660 | if (ip == vlan->vlan_ip) |
| 2661 | return 1; |
| 2662 | } |
| 2663 | |
| 2664 | return 0; |
| 2665 | } |
| 2666 | |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 2667 | /* |
| 2668 | * We go to the (large) trouble of VLAN tagging ARP frames because |
| 2669 | * switches in VLAN mode (especially if ports are configured as |
| 2670 | * "native" to a VLAN) might not pass non-tagged frames. |
| 2671 | */ |
Al Viro | d3bb52b | 2007-08-22 20:06:58 -0400 | [diff] [blame] | 2672 | static void bond_arp_send(struct net_device *slave_dev, int arp_op, __be32 dest_ip, __be32 src_ip, unsigned short vlan_id) |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 2673 | { |
| 2674 | struct sk_buff *skb; |
| 2675 | |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 2676 | pr_debug("arp %d on slave %s: dst %x src %x vid %d\n", arp_op, |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2677 | slave_dev->name, dest_ip, src_ip, vlan_id); |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 2678 | |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 2679 | skb = arp_create(arp_op, ETH_P_ARP, dest_ip, slave_dev, src_ip, |
| 2680 | NULL, slave_dev->dev_addr, NULL); |
| 2681 | |
| 2682 | if (!skb) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2683 | pr_err("ARP packet allocation failed\n"); |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 2684 | return; |
| 2685 | } |
| 2686 | if (vlan_id) { |
| 2687 | skb = vlan_put_tag(skb, vlan_id); |
| 2688 | if (!skb) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2689 | pr_err("failed to insert VLAN tag\n"); |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 2690 | return; |
| 2691 | } |
| 2692 | } |
| 2693 | arp_xmit(skb); |
| 2694 | } |
| 2695 | |
| 2696 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2697 | static void bond_arp_send_all(struct bonding *bond, struct slave *slave) |
| 2698 | { |
David S. Miller | b23dd4f | 2011-03-02 14:31:35 -0800 | [diff] [blame] | 2699 | int i, vlan_id; |
Al Viro | d3bb52b | 2007-08-22 20:06:58 -0400 | [diff] [blame] | 2700 | __be32 *targets = bond->params.arp_targets; |
Pavel Emelyanov | 0883bec | 2008-05-17 21:10:10 -0700 | [diff] [blame] | 2701 | struct vlan_entry *vlan; |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 2702 | struct net_device *vlan_dev; |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 2703 | struct rtable *rt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2704 | |
Mitch Williams | 6b78056 | 2005-11-09 10:36:19 -0800 | [diff] [blame] | 2705 | for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) { |
| 2706 | if (!targets[i]) |
Brian Haley | 5a31bec | 2009-04-13 00:11:30 -0700 | [diff] [blame] | 2707 | break; |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 2708 | pr_debug("basa: target %x\n", targets[i]); |
Jay Vosburgh | f35188f | 2010-07-21 12:14:47 +0000 | [diff] [blame] | 2709 | if (!bond->vlgrp) { |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 2710 | pr_debug("basa: empty vlan: arp_send\n"); |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 2711 | bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i], |
| 2712 | bond->master_ip, 0); |
| 2713 | continue; |
| 2714 | } |
| 2715 | |
| 2716 | /* |
| 2717 | * If VLANs are configured, we do a route lookup to |
| 2718 | * determine which VLAN interface would be used, so we |
| 2719 | * can tag the ARP with the proper VLAN tag. |
| 2720 | */ |
David S. Miller | 78fbfd8 | 2011-03-12 00:00:52 -0500 | [diff] [blame] | 2721 | rt = ip_route_output(dev_net(bond->dev), targets[i], 0, |
| 2722 | RTO_ONLINK, 0); |
David S. Miller | b23dd4f | 2011-03-02 14:31:35 -0800 | [diff] [blame] | 2723 | if (IS_ERR(rt)) { |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 2724 | if (net_ratelimit()) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2725 | pr_warning("%s: no route to arp_ip_target %pI4\n", |
David S. Miller | 78fbfd8 | 2011-03-12 00:00:52 -0500 | [diff] [blame] | 2726 | bond->dev->name, &targets[i]); |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 2727 | } |
| 2728 | continue; |
| 2729 | } |
| 2730 | |
| 2731 | /* |
| 2732 | * This target is not on a VLAN |
| 2733 | */ |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 2734 | if (rt->dst.dev == bond->dev) { |
Jay Vosburgh | ed4b9f8 | 2005-09-14 14:52:09 -0700 | [diff] [blame] | 2735 | ip_rt_put(rt); |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 2736 | pr_debug("basa: rtdev == bond->dev: arp_send\n"); |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 2737 | bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i], |
| 2738 | bond->master_ip, 0); |
| 2739 | continue; |
| 2740 | } |
| 2741 | |
| 2742 | vlan_id = 0; |
Pavel Emelyanov | 0883bec | 2008-05-17 21:10:10 -0700 | [diff] [blame] | 2743 | list_for_each_entry(vlan, &bond->vlan_list, vlan_list) { |
Dan Aloni | 5c15bde | 2007-03-02 20:44:51 -0800 | [diff] [blame] | 2744 | vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id); |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 2745 | if (vlan_dev == rt->dst.dev) { |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 2746 | vlan_id = vlan->vlan_id; |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 2747 | pr_debug("basa: vlan match on %s %d\n", |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 2748 | vlan_dev->name, vlan_id); |
| 2749 | break; |
| 2750 | } |
| 2751 | } |
| 2752 | |
| 2753 | if (vlan_id) { |
Jay Vosburgh | ed4b9f8 | 2005-09-14 14:52:09 -0700 | [diff] [blame] | 2754 | ip_rt_put(rt); |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 2755 | bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i], |
| 2756 | vlan->vlan_ip, vlan_id); |
| 2757 | continue; |
| 2758 | } |
| 2759 | |
| 2760 | if (net_ratelimit()) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2761 | pr_warning("%s: no path to arp_ip_target %pI4 via rt.dev %s\n", |
David S. Miller | 78fbfd8 | 2011-03-12 00:00:52 -0500 | [diff] [blame] | 2762 | bond->dev->name, &targets[i], |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 2763 | rt->dst.dev ? rt->dst.dev->name : "NULL"); |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 2764 | } |
Jay Vosburgh | ed4b9f8 | 2005-09-14 14:52:09 -0700 | [diff] [blame] | 2765 | ip_rt_put(rt); |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 2766 | } |
| 2767 | } |
| 2768 | |
Al Viro | d3bb52b | 2007-08-22 20:06:58 -0400 | [diff] [blame] | 2769 | static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 sip, __be32 tip) |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 2770 | { |
| 2771 | int i; |
Al Viro | d3bb52b | 2007-08-22 20:06:58 -0400 | [diff] [blame] | 2772 | __be32 *targets = bond->params.arp_targets; |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 2773 | |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 2774 | for (i = 0; (i < BOND_MAX_ARP_TARGETS) && targets[i]; i++) { |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 2775 | pr_debug("bva: sip %pI4 tip %pI4 t[%d] %pI4 bhti(tip) %d\n", |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2776 | &sip, &tip, i, &targets[i], |
| 2777 | bond_has_this_ip(bond, tip)); |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 2778 | if (sip == targets[i]) { |
| 2779 | if (bond_has_this_ip(bond, tip)) |
| 2780 | slave->last_arp_rx = jiffies; |
| 2781 | return; |
| 2782 | } |
| 2783 | } |
| 2784 | } |
| 2785 | |
Jiri Pirko | 3aba891 | 2011-04-19 03:48:16 +0000 | [diff] [blame] | 2786 | static void bond_arp_rcv(struct sk_buff *skb, struct bonding *bond, |
| 2787 | struct slave *slave) |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 2788 | { |
| 2789 | struct arphdr *arp; |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 2790 | unsigned char *arp_ptr; |
Al Viro | d3bb52b | 2007-08-22 20:06:58 -0400 | [diff] [blame] | 2791 | __be32 sip, tip; |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 2792 | |
Jiri Pirko | 3aba891 | 2011-04-19 03:48:16 +0000 | [diff] [blame] | 2793 | if (skb->protocol != __cpu_to_be16(ETH_P_ARP)) |
| 2794 | return; |
Andy Gospodarek | 1f3c880 | 2009-12-14 10:48:58 +0000 | [diff] [blame] | 2795 | |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 2796 | read_lock(&bond->lock); |
| 2797 | |
Jiri Pirko | 3aba891 | 2011-04-19 03:48:16 +0000 | [diff] [blame] | 2798 | pr_debug("bond_arp_rcv: bond %s skb->dev %s\n", |
| 2799 | bond->dev->name, skb->dev->name); |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 2800 | |
Jiri Pirko | 3aba891 | 2011-04-19 03:48:16 +0000 | [diff] [blame] | 2801 | if (!pskb_may_pull(skb, arp_hdr_len(bond->dev))) |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 2802 | goto out_unlock; |
| 2803 | |
Arnaldo Carvalho de Melo | d0a92be | 2007-03-12 20:56:31 -0300 | [diff] [blame] | 2804 | arp = arp_hdr(skb); |
Jiri Pirko | 3aba891 | 2011-04-19 03:48:16 +0000 | [diff] [blame] | 2805 | if (arp->ar_hln != bond->dev->addr_len || |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 2806 | skb->pkt_type == PACKET_OTHERHOST || |
| 2807 | skb->pkt_type == PACKET_LOOPBACK || |
| 2808 | arp->ar_hrd != htons(ARPHRD_ETHER) || |
| 2809 | arp->ar_pro != htons(ETH_P_IP) || |
| 2810 | arp->ar_pln != 4) |
| 2811 | goto out_unlock; |
| 2812 | |
| 2813 | arp_ptr = (unsigned char *)(arp + 1); |
Jiri Pirko | 3aba891 | 2011-04-19 03:48:16 +0000 | [diff] [blame] | 2814 | arp_ptr += bond->dev->addr_len; |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 2815 | memcpy(&sip, arp_ptr, 4); |
Jiri Pirko | 3aba891 | 2011-04-19 03:48:16 +0000 | [diff] [blame] | 2816 | arp_ptr += 4 + bond->dev->addr_len; |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 2817 | memcpy(&tip, arp_ptr, 4); |
| 2818 | |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 2819 | pr_debug("bond_arp_rcv: %s %s/%d av %d sv %d sip %pI4 tip %pI4\n", |
Jiri Pirko | e30bc06 | 2011-03-12 03:14:37 +0000 | [diff] [blame] | 2820 | bond->dev->name, slave->dev->name, bond_slave_state(slave), |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2821 | bond->params.arp_validate, slave_do_arp_validate(bond, slave), |
| 2822 | &sip, &tip); |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 2823 | |
| 2824 | /* |
| 2825 | * Backup slaves won't see the ARP reply, but do come through |
| 2826 | * here for each ARP probe (so we swap the sip/tip to validate |
| 2827 | * the probe). In a "redundant switch, common router" type of |
| 2828 | * configuration, the ARP probe will (hopefully) travel from |
| 2829 | * the active, through one switch, the router, then the other |
| 2830 | * switch before reaching the backup. |
| 2831 | */ |
Jiri Pirko | e30bc06 | 2011-03-12 03:14:37 +0000 | [diff] [blame] | 2832 | if (bond_is_active_slave(slave)) |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 2833 | bond_validate_arp(bond, slave, sip, tip); |
| 2834 | else |
| 2835 | bond_validate_arp(bond, slave, tip, sip); |
| 2836 | |
| 2837 | out_unlock: |
| 2838 | read_unlock(&bond->lock); |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 2839 | } |
| 2840 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2841 | /* |
| 2842 | * this function is called regularly to monitor each slave's link |
| 2843 | * ensuring that traffic is being sent and received when arp monitoring |
| 2844 | * is used in load-balancing mode. if the adapter has been dormant, then an |
| 2845 | * arp is transmitted to generate traffic. see activebackup_arp_monitor for |
| 2846 | * arp monitoring in active backup mode. |
| 2847 | */ |
Jay Vosburgh | 1b76b31 | 2007-10-17 17:37:45 -0700 | [diff] [blame] | 2848 | void bond_loadbalance_arp_mon(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2849 | { |
Jay Vosburgh | 1b76b31 | 2007-10-17 17:37:45 -0700 | [diff] [blame] | 2850 | struct bonding *bond = container_of(work, struct bonding, |
| 2851 | arp_work.work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2852 | struct slave *slave, *oldcurrent; |
| 2853 | int do_failover = 0; |
| 2854 | int delta_in_ticks; |
| 2855 | int i; |
| 2856 | |
| 2857 | read_lock(&bond->lock); |
| 2858 | |
Jay Vosburgh | 5ce0da8 | 2008-05-17 21:10:07 -0700 | [diff] [blame] | 2859 | delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2860 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 2861 | if (bond->kill_timers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2862 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2863 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 2864 | if (bond->slave_cnt == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2865 | goto re_arm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2866 | |
| 2867 | read_lock(&bond->curr_slave_lock); |
| 2868 | oldcurrent = bond->curr_active_slave; |
| 2869 | read_unlock(&bond->curr_slave_lock); |
| 2870 | |
| 2871 | /* see if any of the previous devices are up now (i.e. they have |
| 2872 | * xmt and rcv traffic). the curr_active_slave does not come into |
| 2873 | * the picture unless it is null. also, slave->jiffies is not needed |
| 2874 | * here because we send an arp on each slave and give a slave as |
| 2875 | * long as it needs to get the tx/rx within the delta. |
| 2876 | * TODO: what about up/down delay in arp mode? it wasn't here before |
| 2877 | * so it can wait |
| 2878 | */ |
| 2879 | bond_for_each_slave(bond, slave, i) { |
Jiri Bohac | cb32f2a | 2010-09-02 05:45:54 +0000 | [diff] [blame] | 2880 | unsigned long trans_start = dev_trans_start(slave->dev); |
| 2881 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2882 | if (slave->link != BOND_LINK_UP) { |
Jiri Bohac | cb32f2a | 2010-09-02 05:45:54 +0000 | [diff] [blame] | 2883 | if (time_in_range(jiffies, |
| 2884 | trans_start - delta_in_ticks, |
| 2885 | trans_start + delta_in_ticks) && |
| 2886 | time_in_range(jiffies, |
| 2887 | slave->dev->last_rx - delta_in_ticks, |
| 2888 | slave->dev->last_rx + delta_in_ticks)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2889 | |
| 2890 | slave->link = BOND_LINK_UP; |
Jiri Pirko | e30bc06 | 2011-03-12 03:14:37 +0000 | [diff] [blame] | 2891 | bond_set_active_slave(slave); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2892 | |
| 2893 | /* primary_slave has no meaning in round-robin |
| 2894 | * mode. the window of a slave being up and |
| 2895 | * curr_active_slave being null after enslaving |
| 2896 | * is closed. |
| 2897 | */ |
| 2898 | if (!oldcurrent) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2899 | pr_info("%s: link status definitely up for interface %s, ", |
| 2900 | bond->dev->name, |
| 2901 | slave->dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2902 | do_failover = 1; |
| 2903 | } else { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2904 | pr_info("%s: interface %s is now up\n", |
| 2905 | bond->dev->name, |
| 2906 | slave->dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2907 | } |
| 2908 | } |
| 2909 | } else { |
| 2910 | /* slave->link == BOND_LINK_UP */ |
| 2911 | |
| 2912 | /* not all switches will respond to an arp request |
| 2913 | * when the source ip is 0, so don't take the link down |
| 2914 | * if we don't know our ip yet |
| 2915 | */ |
Jiri Bohac | cb32f2a | 2010-09-02 05:45:54 +0000 | [diff] [blame] | 2916 | if (!time_in_range(jiffies, |
| 2917 | trans_start - delta_in_ticks, |
| 2918 | trans_start + 2 * delta_in_ticks) || |
| 2919 | !time_in_range(jiffies, |
| 2920 | slave->dev->last_rx - delta_in_ticks, |
| 2921 | slave->dev->last_rx + 2 * delta_in_ticks)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2922 | |
| 2923 | slave->link = BOND_LINK_DOWN; |
Jiri Pirko | e30bc06 | 2011-03-12 03:14:37 +0000 | [diff] [blame] | 2924 | bond_set_backup_slave(slave); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2925 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 2926 | if (slave->link_failure_count < UINT_MAX) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2927 | slave->link_failure_count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2928 | |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 2929 | pr_info("%s: interface %s is now down.\n", |
| 2930 | bond->dev->name, |
| 2931 | slave->dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2932 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 2933 | if (slave == oldcurrent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2934 | do_failover = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2935 | } |
| 2936 | } |
| 2937 | |
| 2938 | /* note: if switch is in round-robin mode, all links |
| 2939 | * must tx arp to ensure all links rx an arp - otherwise |
| 2940 | * links may oscillate or not come up at all; if switch is |
| 2941 | * in something like xor mode, there is nothing we can |
| 2942 | * do - all replies will be rx'ed on same link causing slaves |
| 2943 | * to be unstable during low/no traffic periods |
| 2944 | */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 2945 | if (IS_UP(slave->dev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2946 | bond_arp_send_all(bond, slave); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2947 | } |
| 2948 | |
| 2949 | if (do_failover) { |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 2950 | block_netpoll_tx(); |
Jay Vosburgh | 059fe7a | 2007-10-17 17:37:49 -0700 | [diff] [blame] | 2951 | write_lock_bh(&bond->curr_slave_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2952 | |
| 2953 | bond_select_active_slave(bond); |
| 2954 | |
Jay Vosburgh | 059fe7a | 2007-10-17 17:37:49 -0700 | [diff] [blame] | 2955 | write_unlock_bh(&bond->curr_slave_lock); |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 2956 | unblock_netpoll_tx(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2957 | } |
| 2958 | |
| 2959 | re_arm: |
Jay Vosburgh | 1b76b31 | 2007-10-17 17:37:45 -0700 | [diff] [blame] | 2960 | if (bond->params.arp_interval) |
| 2961 | queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2962 | out: |
| 2963 | read_unlock(&bond->lock); |
| 2964 | } |
| 2965 | |
| 2966 | /* |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 2967 | * Called to inspect slaves for active-backup mode ARP monitor link state |
| 2968 | * changes. Sets new_link in slaves to specify what action should take |
| 2969 | * place for the slave. Returns 0 if no changes are found, >0 if changes |
| 2970 | * to link states must be committed. |
| 2971 | * |
| 2972 | * Called with bond->lock held for read. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2973 | */ |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 2974 | static int bond_ab_arp_inspect(struct bonding *bond, int delta_in_ticks) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2975 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2976 | struct slave *slave; |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 2977 | int i, commit = 0; |
Jiri Bohac | cb32f2a | 2010-09-02 05:45:54 +0000 | [diff] [blame] | 2978 | unsigned long trans_start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2979 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2980 | bond_for_each_slave(bond, slave, i) { |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 2981 | slave->new_link = BOND_LINK_NOCHANGE; |
| 2982 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2983 | if (slave->link != BOND_LINK_UP) { |
Jiri Bohac | cb32f2a | 2010-09-02 05:45:54 +0000 | [diff] [blame] | 2984 | if (time_in_range(jiffies, |
| 2985 | slave_last_rx(bond, slave) - delta_in_ticks, |
| 2986 | slave_last_rx(bond, slave) + delta_in_ticks)) { |
| 2987 | |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 2988 | slave->new_link = BOND_LINK_UP; |
| 2989 | commit++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2990 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2991 | |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 2992 | continue; |
| 2993 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2994 | |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 2995 | /* |
| 2996 | * Give slaves 2*delta after being enslaved or made |
| 2997 | * active. This avoids bouncing, as the last receive |
| 2998 | * times need a full ARP monitor cycle to be updated. |
| 2999 | */ |
Jiri Bohac | cb32f2a | 2010-09-02 05:45:54 +0000 | [diff] [blame] | 3000 | if (time_in_range(jiffies, |
| 3001 | slave->jiffies - delta_in_ticks, |
| 3002 | slave->jiffies + 2 * delta_in_ticks)) |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3003 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3004 | |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3005 | /* |
| 3006 | * Backup slave is down if: |
| 3007 | * - No current_arp_slave AND |
| 3008 | * - more than 3*delta since last receive AND |
| 3009 | * - the bond has an IP address |
| 3010 | * |
| 3011 | * Note: a non-null current_arp_slave indicates |
| 3012 | * the curr_active_slave went down and we are |
| 3013 | * searching for a new one; under this condition |
| 3014 | * we only take the curr_active_slave down - this |
| 3015 | * gives each slave a chance to tx/rx traffic |
| 3016 | * before being taken out |
| 3017 | */ |
Jiri Pirko | e30bc06 | 2011-03-12 03:14:37 +0000 | [diff] [blame] | 3018 | if (!bond_is_active_slave(slave) && |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3019 | !bond->current_arp_slave && |
Jiri Bohac | cb32f2a | 2010-09-02 05:45:54 +0000 | [diff] [blame] | 3020 | !time_in_range(jiffies, |
| 3021 | slave_last_rx(bond, slave) - delta_in_ticks, |
| 3022 | slave_last_rx(bond, slave) + 3 * delta_in_ticks)) { |
| 3023 | |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3024 | slave->new_link = BOND_LINK_DOWN; |
| 3025 | commit++; |
| 3026 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3027 | |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3028 | /* |
| 3029 | * Active slave is down if: |
| 3030 | * - more than 2*delta since transmitting OR |
| 3031 | * - (more than 2*delta since receive AND |
| 3032 | * the bond has an IP address) |
| 3033 | */ |
Jiri Bohac | cb32f2a | 2010-09-02 05:45:54 +0000 | [diff] [blame] | 3034 | trans_start = dev_trans_start(slave->dev); |
Jiri Pirko | e30bc06 | 2011-03-12 03:14:37 +0000 | [diff] [blame] | 3035 | if (bond_is_active_slave(slave) && |
Jiri Bohac | cb32f2a | 2010-09-02 05:45:54 +0000 | [diff] [blame] | 3036 | (!time_in_range(jiffies, |
| 3037 | trans_start - delta_in_ticks, |
| 3038 | trans_start + 2 * delta_in_ticks) || |
| 3039 | !time_in_range(jiffies, |
| 3040 | slave_last_rx(bond, slave) - delta_in_ticks, |
| 3041 | slave_last_rx(bond, slave) + 2 * delta_in_ticks))) { |
| 3042 | |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3043 | slave->new_link = BOND_LINK_DOWN; |
| 3044 | commit++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3045 | } |
| 3046 | } |
| 3047 | |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3048 | return commit; |
| 3049 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3050 | |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3051 | /* |
| 3052 | * Called to commit link state changes noted by inspection step of |
| 3053 | * active-backup mode ARP monitor. |
| 3054 | * |
| 3055 | * Called with RTNL and bond->lock for read. |
| 3056 | */ |
| 3057 | static void bond_ab_arp_commit(struct bonding *bond, int delta_in_ticks) |
| 3058 | { |
| 3059 | struct slave *slave; |
| 3060 | int i; |
Jiri Bohac | cb32f2a | 2010-09-02 05:45:54 +0000 | [diff] [blame] | 3061 | unsigned long trans_start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3062 | |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3063 | bond_for_each_slave(bond, slave, i) { |
| 3064 | switch (slave->new_link) { |
| 3065 | case BOND_LINK_NOCHANGE: |
| 3066 | continue; |
| 3067 | |
| 3068 | case BOND_LINK_UP: |
Jiri Bohac | cb32f2a | 2010-09-02 05:45:54 +0000 | [diff] [blame] | 3069 | trans_start = dev_trans_start(slave->dev); |
Jiri Pirko | b9f6025 | 2009-08-31 11:09:38 +0000 | [diff] [blame] | 3070 | if ((!bond->curr_active_slave && |
Jiri Bohac | cb32f2a | 2010-09-02 05:45:54 +0000 | [diff] [blame] | 3071 | time_in_range(jiffies, |
| 3072 | trans_start - delta_in_ticks, |
| 3073 | trans_start + delta_in_ticks)) || |
Jiri Pirko | b9f6025 | 2009-08-31 11:09:38 +0000 | [diff] [blame] | 3074 | bond->curr_active_slave != slave) { |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3075 | slave->link = BOND_LINK_UP; |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3076 | bond->current_arp_slave = NULL; |
| 3077 | |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 3078 | pr_info("%s: link status definitely up for interface %s.\n", |
Jiri Pirko | b9f6025 | 2009-08-31 11:09:38 +0000 | [diff] [blame] | 3079 | bond->dev->name, slave->dev->name); |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3080 | |
Jiri Pirko | b9f6025 | 2009-08-31 11:09:38 +0000 | [diff] [blame] | 3081 | if (!bond->curr_active_slave || |
| 3082 | (slave == bond->primary_slave)) |
| 3083 | goto do_failover; |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3084 | |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3085 | } |
| 3086 | |
Jiri Pirko | b9f6025 | 2009-08-31 11:09:38 +0000 | [diff] [blame] | 3087 | continue; |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3088 | |
| 3089 | case BOND_LINK_DOWN: |
| 3090 | if (slave->link_failure_count < UINT_MAX) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3091 | slave->link_failure_count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3092 | |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3093 | slave->link = BOND_LINK_DOWN; |
Jiri Pirko | b9f6025 | 2009-08-31 11:09:38 +0000 | [diff] [blame] | 3094 | bond_set_slave_inactive_flags(slave); |
| 3095 | |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 3096 | pr_info("%s: link status definitely down for interface %s, disabling it\n", |
Jiri Pirko | b9f6025 | 2009-08-31 11:09:38 +0000 | [diff] [blame] | 3097 | bond->dev->name, slave->dev->name); |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3098 | |
| 3099 | if (slave == bond->curr_active_slave) { |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3100 | bond->current_arp_slave = NULL; |
Jiri Pirko | b9f6025 | 2009-08-31 11:09:38 +0000 | [diff] [blame] | 3101 | goto do_failover; |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3102 | } |
Jiri Pirko | b9f6025 | 2009-08-31 11:09:38 +0000 | [diff] [blame] | 3103 | |
| 3104 | continue; |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3105 | |
| 3106 | default: |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 3107 | pr_err("%s: impossible: new_link %d on slave %s\n", |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3108 | bond->dev->name, slave->new_link, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3109 | slave->dev->name); |
Jiri Pirko | b9f6025 | 2009-08-31 11:09:38 +0000 | [diff] [blame] | 3110 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3111 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3112 | |
Jiri Pirko | b9f6025 | 2009-08-31 11:09:38 +0000 | [diff] [blame] | 3113 | do_failover: |
| 3114 | ASSERT_RTNL(); |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 3115 | block_netpoll_tx(); |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3116 | write_lock_bh(&bond->curr_slave_lock); |
Jiri Pirko | b9f6025 | 2009-08-31 11:09:38 +0000 | [diff] [blame] | 3117 | bond_select_active_slave(bond); |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3118 | write_unlock_bh(&bond->curr_slave_lock); |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 3119 | unblock_netpoll_tx(); |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3120 | } |
| 3121 | |
| 3122 | bond_set_carrier(bond); |
| 3123 | } |
| 3124 | |
| 3125 | /* |
| 3126 | * Send ARP probes for active-backup mode ARP monitor. |
| 3127 | * |
| 3128 | * Called with bond->lock held for read. |
| 3129 | */ |
| 3130 | static void bond_ab_arp_probe(struct bonding *bond) |
| 3131 | { |
| 3132 | struct slave *slave; |
| 3133 | int i; |
| 3134 | |
| 3135 | read_lock(&bond->curr_slave_lock); |
| 3136 | |
| 3137 | if (bond->current_arp_slave && bond->curr_active_slave) |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 3138 | pr_info("PROBE: c_arp %s && cas %s BAD\n", |
| 3139 | bond->current_arp_slave->dev->name, |
| 3140 | bond->curr_active_slave->dev->name); |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3141 | |
| 3142 | if (bond->curr_active_slave) { |
| 3143 | bond_arp_send_all(bond, bond->curr_active_slave); |
| 3144 | read_unlock(&bond->curr_slave_lock); |
| 3145 | return; |
| 3146 | } |
| 3147 | |
| 3148 | read_unlock(&bond->curr_slave_lock); |
| 3149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3150 | /* if we don't have a curr_active_slave, search for the next available |
| 3151 | * backup slave from the current_arp_slave and make it the candidate |
| 3152 | * for becoming the curr_active_slave |
| 3153 | */ |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3154 | |
| 3155 | if (!bond->current_arp_slave) { |
| 3156 | bond->current_arp_slave = bond->first_slave; |
| 3157 | if (!bond->current_arp_slave) |
| 3158 | return; |
| 3159 | } |
| 3160 | |
| 3161 | bond_set_slave_inactive_flags(bond->current_arp_slave); |
| 3162 | |
| 3163 | /* search for next candidate */ |
| 3164 | bond_for_each_slave_from(bond, slave, i, bond->current_arp_slave->next) { |
| 3165 | if (IS_UP(slave->dev)) { |
| 3166 | slave->link = BOND_LINK_BACK; |
| 3167 | bond_set_slave_active_flags(slave); |
| 3168 | bond_arp_send_all(bond, slave); |
| 3169 | slave->jiffies = jiffies; |
| 3170 | bond->current_arp_slave = slave; |
| 3171 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3172 | } |
| 3173 | |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3174 | /* if the link state is up at this point, we |
| 3175 | * mark it down - this can happen if we have |
| 3176 | * simultaneous link failures and |
| 3177 | * reselect_active_interface doesn't make this |
| 3178 | * one the current slave so it is still marked |
| 3179 | * up when it is actually down |
| 3180 | */ |
| 3181 | if (slave->link == BOND_LINK_UP) { |
| 3182 | slave->link = BOND_LINK_DOWN; |
| 3183 | if (slave->link_failure_count < UINT_MAX) |
| 3184 | slave->link_failure_count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3185 | |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3186 | bond_set_slave_inactive_flags(slave); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3187 | |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 3188 | pr_info("%s: backup interface %s is now down.\n", |
| 3189 | bond->dev->name, slave->dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3190 | } |
| 3191 | } |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3192 | } |
| 3193 | |
| 3194 | void bond_activebackup_arp_mon(struct work_struct *work) |
| 3195 | { |
| 3196 | struct bonding *bond = container_of(work, struct bonding, |
| 3197 | arp_work.work); |
Ben Hutchings | ad246c9 | 2011-04-26 15:25:52 +0000 | [diff] [blame] | 3198 | bool should_notify_peers = false; |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3199 | int delta_in_ticks; |
| 3200 | |
| 3201 | read_lock(&bond->lock); |
| 3202 | |
| 3203 | if (bond->kill_timers) |
| 3204 | goto out; |
| 3205 | |
| 3206 | delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval); |
| 3207 | |
| 3208 | if (bond->slave_cnt == 0) |
| 3209 | goto re_arm; |
| 3210 | |
Ben Hutchings | ad246c9 | 2011-04-26 15:25:52 +0000 | [diff] [blame] | 3211 | should_notify_peers = bond_should_notify_peers(bond); |
| 3212 | |
Jay Vosburgh | b2220ca | 2008-05-17 21:10:13 -0700 | [diff] [blame] | 3213 | if (bond_ab_arp_inspect(bond, delta_in_ticks)) { |
| 3214 | read_unlock(&bond->lock); |
| 3215 | rtnl_lock(); |
| 3216 | read_lock(&bond->lock); |
| 3217 | |
| 3218 | bond_ab_arp_commit(bond, delta_in_ticks); |
| 3219 | |
| 3220 | read_unlock(&bond->lock); |
| 3221 | rtnl_unlock(); |
| 3222 | read_lock(&bond->lock); |
| 3223 | } |
| 3224 | |
| 3225 | bond_ab_arp_probe(bond); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3226 | |
| 3227 | re_arm: |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3228 | if (bond->params.arp_interval) |
Jay Vosburgh | 1b76b31 | 2007-10-17 17:37:45 -0700 | [diff] [blame] | 3229 | queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3230 | out: |
| 3231 | read_unlock(&bond->lock); |
Ben Hutchings | ad246c9 | 2011-04-26 15:25:52 +0000 | [diff] [blame] | 3232 | |
| 3233 | if (should_notify_peers) { |
| 3234 | rtnl_lock(); |
| 3235 | netdev_bonding_change(bond->dev, NETDEV_NOTIFY_PEERS); |
| 3236 | rtnl_unlock(); |
| 3237 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3238 | } |
| 3239 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3240 | /*-------------------------- netdev event handling --------------------------*/ |
| 3241 | |
| 3242 | /* |
| 3243 | * Change device name |
| 3244 | */ |
| 3245 | static int bond_event_changename(struct bonding *bond) |
| 3246 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3247 | bond_remove_proc_entry(bond); |
| 3248 | bond_create_proc_entry(bond); |
Stephen Hemminger | 7e08384 | 2009-06-12 19:02:46 +0000 | [diff] [blame] | 3249 | |
Taku Izumi | f073c7c | 2010-12-09 15:17:13 +0000 | [diff] [blame] | 3250 | bond_debug_reregister(bond); |
| 3251 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3252 | return NOTIFY_DONE; |
| 3253 | } |
| 3254 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3255 | static int bond_master_netdev_event(unsigned long event, |
| 3256 | struct net_device *bond_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3257 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 3258 | struct bonding *event_bond = netdev_priv(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3259 | |
| 3260 | switch (event) { |
| 3261 | case NETDEV_CHANGENAME: |
| 3262 | return bond_event_changename(event_bond); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3263 | default: |
| 3264 | break; |
| 3265 | } |
| 3266 | |
| 3267 | return NOTIFY_DONE; |
| 3268 | } |
| 3269 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3270 | static int bond_slave_netdev_event(unsigned long event, |
| 3271 | struct net_device *slave_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3272 | { |
| 3273 | struct net_device *bond_dev = slave_dev->master; |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 3274 | struct bonding *bond = netdev_priv(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3275 | |
| 3276 | switch (event) { |
| 3277 | case NETDEV_UNREGISTER: |
| 3278 | if (bond_dev) { |
Jay Vosburgh | 1284cd3 | 2007-10-15 16:44:27 -0700 | [diff] [blame] | 3279 | if (bond->setup_by_slave) |
| 3280 | bond_release_and_destroy(bond_dev, slave_dev); |
| 3281 | else |
| 3282 | bond_release(bond_dev, slave_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3283 | } |
| 3284 | break; |
| 3285 | case NETDEV_CHANGE: |
Jay Vosburgh | 17d0450 | 2009-03-18 18:38:25 -0700 | [diff] [blame] | 3286 | if (bond->params.mode == BOND_MODE_8023AD || bond_is_lb(bond)) { |
| 3287 | struct slave *slave; |
| 3288 | |
| 3289 | slave = bond_get_slave_by_dev(bond, slave_dev); |
| 3290 | if (slave) { |
David Decotigny | 5d30530 | 2011-04-13 15:22:31 +0000 | [diff] [blame] | 3291 | u32 old_speed = slave->speed; |
David Decotigny | 65cce19 | 2011-04-13 15:22:30 +0000 | [diff] [blame] | 3292 | u8 old_duplex = slave->duplex; |
Jay Vosburgh | 17d0450 | 2009-03-18 18:38:25 -0700 | [diff] [blame] | 3293 | |
| 3294 | bond_update_speed_duplex(slave); |
| 3295 | |
| 3296 | if (bond_is_lb(bond)) |
| 3297 | break; |
| 3298 | |
| 3299 | if (old_speed != slave->speed) |
| 3300 | bond_3ad_adapter_speed_changed(slave); |
| 3301 | if (old_duplex != slave->duplex) |
| 3302 | bond_3ad_adapter_duplex_changed(slave); |
| 3303 | } |
| 3304 | } |
| 3305 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3306 | break; |
| 3307 | case NETDEV_DOWN: |
| 3308 | /* |
| 3309 | * ... Or is it this? |
| 3310 | */ |
| 3311 | break; |
| 3312 | case NETDEV_CHANGEMTU: |
| 3313 | /* |
| 3314 | * TODO: Should slaves be allowed to |
| 3315 | * independently alter their MTU? For |
| 3316 | * an active-backup bond, slaves need |
| 3317 | * not be the same type of device, so |
| 3318 | * MTUs may vary. For other modes, |
| 3319 | * slaves arguably should have the |
| 3320 | * same MTUs. To do this, we'd need to |
| 3321 | * take over the slave's change_mtu |
| 3322 | * function for the duration of their |
| 3323 | * servitude. |
| 3324 | */ |
| 3325 | break; |
| 3326 | case NETDEV_CHANGENAME: |
| 3327 | /* |
| 3328 | * TODO: handle changing the primary's name |
| 3329 | */ |
| 3330 | break; |
Arthur Kepner | 8531c5f | 2005-08-23 01:34:53 -0400 | [diff] [blame] | 3331 | case NETDEV_FEAT_CHANGE: |
| 3332 | bond_compute_features(bond); |
| 3333 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3334 | default: |
| 3335 | break; |
| 3336 | } |
| 3337 | |
| 3338 | return NOTIFY_DONE; |
| 3339 | } |
| 3340 | |
| 3341 | /* |
| 3342 | * bond_netdev_event: handle netdev notifier chain events. |
| 3343 | * |
| 3344 | * This function receives events for the netdev chain. The caller (an |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 3345 | * ioctl handler calling blocking_notifier_call_chain) holds the necessary |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3346 | * locks for us to safely manipulate the slave devices (RTNL lock, |
| 3347 | * dev_probe_lock). |
| 3348 | */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3349 | static int bond_netdev_event(struct notifier_block *this, |
| 3350 | unsigned long event, void *ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3351 | { |
| 3352 | struct net_device *event_dev = (struct net_device *)ptr; |
| 3353 | |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 3354 | pr_debug("event_dev: %s, event: %lx\n", |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 3355 | event_dev ? event_dev->name : "None", |
| 3356 | event); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3357 | |
Jay Vosburgh | 0b680e7 | 2006-09-22 21:54:10 -0700 | [diff] [blame] | 3358 | if (!(event_dev->priv_flags & IFF_BONDING)) |
| 3359 | return NOTIFY_DONE; |
| 3360 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3361 | if (event_dev->flags & IFF_MASTER) { |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 3362 | pr_debug("IFF_MASTER\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3363 | return bond_master_netdev_event(event, event_dev); |
| 3364 | } |
| 3365 | |
| 3366 | if (event_dev->flags & IFF_SLAVE) { |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 3367 | pr_debug("IFF_SLAVE\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3368 | return bond_slave_netdev_event(event, event_dev); |
| 3369 | } |
| 3370 | |
| 3371 | return NOTIFY_DONE; |
| 3372 | } |
| 3373 | |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 3374 | /* |
| 3375 | * bond_inetaddr_event: handle inetaddr notifier chain events. |
| 3376 | * |
| 3377 | * We keep track of device IPs primarily to use as source addresses in |
| 3378 | * ARP monitor probes (rather than spewing out broadcasts all the time). |
| 3379 | * |
| 3380 | * We track one IP for the main device (if it has one), plus one per VLAN. |
| 3381 | */ |
| 3382 | static int bond_inetaddr_event(struct notifier_block *this, unsigned long event, void *ptr) |
| 3383 | { |
| 3384 | struct in_ifaddr *ifa = ptr; |
| 3385 | struct net_device *vlan_dev, *event_dev = ifa->ifa_dev->dev; |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 3386 | struct bond_net *bn = net_generic(dev_net(event_dev), bond_net_id); |
Pavel Emelyanov | 0883bec | 2008-05-17 21:10:10 -0700 | [diff] [blame] | 3387 | struct bonding *bond; |
| 3388 | struct vlan_entry *vlan; |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 3389 | |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 3390 | list_for_each_entry(bond, &bn->dev_list, bond_list) { |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 3391 | if (bond->dev == event_dev) { |
| 3392 | switch (event) { |
| 3393 | case NETDEV_UP: |
| 3394 | bond->master_ip = ifa->ifa_local; |
| 3395 | return NOTIFY_OK; |
| 3396 | case NETDEV_DOWN: |
| 3397 | bond->master_ip = bond_glean_dev_ip(bond->dev); |
| 3398 | return NOTIFY_OK; |
| 3399 | default: |
| 3400 | return NOTIFY_DONE; |
| 3401 | } |
| 3402 | } |
| 3403 | |
Pavel Emelyanov | 0883bec | 2008-05-17 21:10:10 -0700 | [diff] [blame] | 3404 | list_for_each_entry(vlan, &bond->vlan_list, vlan_list) { |
Jay Vosburgh | f35188f | 2010-07-21 12:14:47 +0000 | [diff] [blame] | 3405 | if (!bond->vlgrp) |
| 3406 | continue; |
Dan Aloni | 5c15bde | 2007-03-02 20:44:51 -0800 | [diff] [blame] | 3407 | vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id); |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 3408 | if (vlan_dev == event_dev) { |
| 3409 | switch (event) { |
| 3410 | case NETDEV_UP: |
| 3411 | vlan->vlan_ip = ifa->ifa_local; |
| 3412 | return NOTIFY_OK; |
| 3413 | case NETDEV_DOWN: |
| 3414 | vlan->vlan_ip = |
| 3415 | bond_glean_dev_ip(vlan_dev); |
| 3416 | return NOTIFY_OK; |
| 3417 | default: |
| 3418 | return NOTIFY_DONE; |
| 3419 | } |
| 3420 | } |
| 3421 | } |
| 3422 | } |
| 3423 | return NOTIFY_DONE; |
| 3424 | } |
| 3425 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3426 | static struct notifier_block bond_netdev_notifier = { |
| 3427 | .notifier_call = bond_netdev_event, |
| 3428 | }; |
| 3429 | |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 3430 | static struct notifier_block bond_inetaddr_notifier = { |
| 3431 | .notifier_call = bond_inetaddr_event, |
| 3432 | }; |
| 3433 | |
Jay Vosburgh | 169a3e6 | 2005-06-26 17:54:11 -0400 | [diff] [blame] | 3434 | /*---------------------------- Hashing Policies -----------------------------*/ |
| 3435 | |
| 3436 | /* |
Jay Vosburgh | 6f6652b | 2007-12-06 23:40:34 -0800 | [diff] [blame] | 3437 | * Hash for the output device based upon layer 2 and layer 3 data. If |
| 3438 | * the packet is not IP mimic bond_xmit_hash_policy_l2() |
| 3439 | */ |
Jasper Spaans | a361c83 | 2009-10-23 04:09:24 +0000 | [diff] [blame] | 3440 | static int bond_xmit_hash_policy_l23(struct sk_buff *skb, int count) |
Jay Vosburgh | 6f6652b | 2007-12-06 23:40:34 -0800 | [diff] [blame] | 3441 | { |
| 3442 | struct ethhdr *data = (struct ethhdr *)skb->data; |
| 3443 | struct iphdr *iph = ip_hdr(skb); |
| 3444 | |
Brian Haley | f14c4e4 | 2008-09-02 10:08:08 -0400 | [diff] [blame] | 3445 | if (skb->protocol == htons(ETH_P_IP)) { |
Jay Vosburgh | 6f6652b | 2007-12-06 23:40:34 -0800 | [diff] [blame] | 3446 | return ((ntohl(iph->saddr ^ iph->daddr) & 0xffff) ^ |
Jasper Spaans | d3da683 | 2009-10-23 04:08:46 +0000 | [diff] [blame] | 3447 | (data->h_dest[5] ^ data->h_source[5])) % count; |
Jay Vosburgh | 6f6652b | 2007-12-06 23:40:34 -0800 | [diff] [blame] | 3448 | } |
| 3449 | |
Jasper Spaans | d3da683 | 2009-10-23 04:08:46 +0000 | [diff] [blame] | 3450 | return (data->h_dest[5] ^ data->h_source[5]) % count; |
Jay Vosburgh | 6f6652b | 2007-12-06 23:40:34 -0800 | [diff] [blame] | 3451 | } |
| 3452 | |
| 3453 | /* |
Michael Opdenacker | 59c5159 | 2007-05-09 08:57:56 +0200 | [diff] [blame] | 3454 | * Hash for the output device based upon layer 3 and layer 4 data. If |
Jay Vosburgh | 169a3e6 | 2005-06-26 17:54:11 -0400 | [diff] [blame] | 3455 | * the packet is a frag or not TCP or UDP, just use layer 3 data. If it is |
| 3456 | * altogether not IP, mimic bond_xmit_hash_policy_l2() |
| 3457 | */ |
Jasper Spaans | a361c83 | 2009-10-23 04:09:24 +0000 | [diff] [blame] | 3458 | static int bond_xmit_hash_policy_l34(struct sk_buff *skb, int count) |
Jay Vosburgh | 169a3e6 | 2005-06-26 17:54:11 -0400 | [diff] [blame] | 3459 | { |
| 3460 | struct ethhdr *data = (struct ethhdr *)skb->data; |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 3461 | struct iphdr *iph = ip_hdr(skb); |
Al Viro | d3bb52b | 2007-08-22 20:06:58 -0400 | [diff] [blame] | 3462 | __be16 *layer4hdr = (__be16 *)((u32 *)iph + iph->ihl); |
Jay Vosburgh | 169a3e6 | 2005-06-26 17:54:11 -0400 | [diff] [blame] | 3463 | int layer4_xor = 0; |
| 3464 | |
Brian Haley | f14c4e4 | 2008-09-02 10:08:08 -0400 | [diff] [blame] | 3465 | if (skb->protocol == htons(ETH_P_IP)) { |
| 3466 | if (!(iph->frag_off & htons(IP_MF|IP_OFFSET)) && |
Jay Vosburgh | 169a3e6 | 2005-06-26 17:54:11 -0400 | [diff] [blame] | 3467 | (iph->protocol == IPPROTO_TCP || |
| 3468 | iph->protocol == IPPROTO_UDP)) { |
Al Viro | d3bb52b | 2007-08-22 20:06:58 -0400 | [diff] [blame] | 3469 | layer4_xor = ntohs((*layer4hdr ^ *(layer4hdr + 1))); |
Jay Vosburgh | 169a3e6 | 2005-06-26 17:54:11 -0400 | [diff] [blame] | 3470 | } |
| 3471 | return (layer4_xor ^ |
| 3472 | ((ntohl(iph->saddr ^ iph->daddr)) & 0xffff)) % count; |
| 3473 | |
| 3474 | } |
| 3475 | |
Jasper Spaans | d3da683 | 2009-10-23 04:08:46 +0000 | [diff] [blame] | 3476 | return (data->h_dest[5] ^ data->h_source[5]) % count; |
Jay Vosburgh | 169a3e6 | 2005-06-26 17:54:11 -0400 | [diff] [blame] | 3477 | } |
| 3478 | |
| 3479 | /* |
| 3480 | * Hash for the output device based upon layer 2 data |
| 3481 | */ |
Jasper Spaans | a361c83 | 2009-10-23 04:09:24 +0000 | [diff] [blame] | 3482 | static int bond_xmit_hash_policy_l2(struct sk_buff *skb, int count) |
Jay Vosburgh | 169a3e6 | 2005-06-26 17:54:11 -0400 | [diff] [blame] | 3483 | { |
| 3484 | struct ethhdr *data = (struct ethhdr *)skb->data; |
| 3485 | |
Jasper Spaans | d3da683 | 2009-10-23 04:08:46 +0000 | [diff] [blame] | 3486 | return (data->h_dest[5] ^ data->h_source[5]) % count; |
Jay Vosburgh | 169a3e6 | 2005-06-26 17:54:11 -0400 | [diff] [blame] | 3487 | } |
| 3488 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3489 | /*-------------------------- Device entry points ----------------------------*/ |
| 3490 | |
| 3491 | static int bond_open(struct net_device *bond_dev) |
| 3492 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 3493 | struct bonding *bond = netdev_priv(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3494 | |
| 3495 | bond->kill_timers = 0; |
| 3496 | |
Flavio Leitner | 5a37e8c | 2010-10-05 14:23:57 +0000 | [diff] [blame] | 3497 | INIT_DELAYED_WORK(&bond->mcast_work, bond_resend_igmp_join_requests_delayed); |
| 3498 | |
Holger Eitzenberger | 5840205 | 2008-12-09 23:07:13 -0800 | [diff] [blame] | 3499 | if (bond_is_lb(bond)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3500 | /* bond_alb_initialize must be called before the timer |
| 3501 | * is started. |
| 3502 | */ |
| 3503 | if (bond_alb_initialize(bond, (bond->params.mode == BOND_MODE_ALB))) { |
| 3504 | /* something went wrong - fail the open operation */ |
stephen hemminger | b473946 | 2010-01-25 23:34:15 +0000 | [diff] [blame] | 3505 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3506 | } |
| 3507 | |
Jay Vosburgh | 1b76b31 | 2007-10-17 17:37:45 -0700 | [diff] [blame] | 3508 | INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor); |
| 3509 | queue_delayed_work(bond->wq, &bond->alb_work, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3510 | } |
| 3511 | |
| 3512 | if (bond->params.miimon) { /* link check interval, in milliseconds. */ |
Jay Vosburgh | 1b76b31 | 2007-10-17 17:37:45 -0700 | [diff] [blame] | 3513 | INIT_DELAYED_WORK(&bond->mii_work, bond_mii_monitor); |
| 3514 | queue_delayed_work(bond->wq, &bond->mii_work, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3515 | } |
| 3516 | |
| 3517 | if (bond->params.arp_interval) { /* arp interval, in milliseconds. */ |
Jay Vosburgh | 1b76b31 | 2007-10-17 17:37:45 -0700 | [diff] [blame] | 3518 | if (bond->params.mode == BOND_MODE_ACTIVEBACKUP) |
| 3519 | INIT_DELAYED_WORK(&bond->arp_work, |
| 3520 | bond_activebackup_arp_mon); |
| 3521 | else |
| 3522 | INIT_DELAYED_WORK(&bond->arp_work, |
| 3523 | bond_loadbalance_arp_mon); |
| 3524 | |
| 3525 | queue_delayed_work(bond->wq, &bond->arp_work, 0); |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 3526 | if (bond->params.arp_validate) |
Jiri Pirko | 3aba891 | 2011-04-19 03:48:16 +0000 | [diff] [blame] | 3527 | bond->recv_probe = bond_arp_rcv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3528 | } |
| 3529 | |
| 3530 | if (bond->params.mode == BOND_MODE_8023AD) { |
Adrian Bunk | a40745f | 2007-10-24 18:27:43 +0200 | [diff] [blame] | 3531 | INIT_DELAYED_WORK(&bond->ad_work, bond_3ad_state_machine_handler); |
Jay Vosburgh | 1b76b31 | 2007-10-17 17:37:45 -0700 | [diff] [blame] | 3532 | queue_delayed_work(bond->wq, &bond->ad_work, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3533 | /* register to receive LACPDUs */ |
Jiri Pirko | 3aba891 | 2011-04-19 03:48:16 +0000 | [diff] [blame] | 3534 | bond->recv_probe = bond_3ad_lacpdu_recv; |
Jay Vosburgh | fd989c8 | 2008-11-04 17:51:16 -0800 | [diff] [blame] | 3535 | bond_3ad_initiate_agg_selection(bond, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3536 | } |
| 3537 | |
| 3538 | return 0; |
| 3539 | } |
| 3540 | |
| 3541 | static int bond_close(struct net_device *bond_dev) |
| 3542 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 3543 | struct bonding *bond = netdev_priv(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3544 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3545 | write_lock_bh(&bond->lock); |
| 3546 | |
Ben Hutchings | ad246c9 | 2011-04-26 15:25:52 +0000 | [diff] [blame] | 3547 | bond->send_peer_notif = 0; |
| 3548 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3549 | /* signal timers not to re-arm */ |
| 3550 | bond->kill_timers = 1; |
| 3551 | |
| 3552 | write_unlock_bh(&bond->lock); |
| 3553 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3554 | if (bond->params.miimon) { /* link check interval, in milliseconds. */ |
Jay Vosburgh | 1b76b31 | 2007-10-17 17:37:45 -0700 | [diff] [blame] | 3555 | cancel_delayed_work(&bond->mii_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3556 | } |
| 3557 | |
| 3558 | if (bond->params.arp_interval) { /* arp interval, in milliseconds. */ |
Jay Vosburgh | 1b76b31 | 2007-10-17 17:37:45 -0700 | [diff] [blame] | 3559 | cancel_delayed_work(&bond->arp_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3560 | } |
| 3561 | |
| 3562 | switch (bond->params.mode) { |
| 3563 | case BOND_MODE_8023AD: |
Jay Vosburgh | 1b76b31 | 2007-10-17 17:37:45 -0700 | [diff] [blame] | 3564 | cancel_delayed_work(&bond->ad_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3565 | break; |
| 3566 | case BOND_MODE_TLB: |
| 3567 | case BOND_MODE_ALB: |
Jay Vosburgh | 1b76b31 | 2007-10-17 17:37:45 -0700 | [diff] [blame] | 3568 | cancel_delayed_work(&bond->alb_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3569 | break; |
| 3570 | default: |
| 3571 | break; |
| 3572 | } |
| 3573 | |
Flavio Leitner | 5a37e8c | 2010-10-05 14:23:57 +0000 | [diff] [blame] | 3574 | if (delayed_work_pending(&bond->mcast_work)) |
| 3575 | cancel_delayed_work(&bond->mcast_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3576 | |
Holger Eitzenberger | 5840205 | 2008-12-09 23:07:13 -0800 | [diff] [blame] | 3577 | if (bond_is_lb(bond)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3578 | /* Must be called only after all |
| 3579 | * slaves have been released |
| 3580 | */ |
| 3581 | bond_alb_deinitialize(bond); |
| 3582 | } |
Jiri Pirko | 3aba891 | 2011-04-19 03:48:16 +0000 | [diff] [blame] | 3583 | bond->recv_probe = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3584 | |
| 3585 | return 0; |
| 3586 | } |
| 3587 | |
Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 3588 | static struct rtnl_link_stats64 *bond_get_stats(struct net_device *bond_dev, |
| 3589 | struct rtnl_link_stats64 *stats) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3590 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 3591 | struct bonding *bond = netdev_priv(bond_dev); |
Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 3592 | struct rtnl_link_stats64 temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3593 | struct slave *slave; |
| 3594 | int i; |
| 3595 | |
Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 3596 | memset(stats, 0, sizeof(*stats)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3597 | |
| 3598 | read_lock_bh(&bond->lock); |
| 3599 | |
| 3600 | bond_for_each_slave(bond, slave, i) { |
Ben Hutchings | be1f3c2 | 2010-06-08 07:19:54 +0000 | [diff] [blame] | 3601 | const struct rtnl_link_stats64 *sstats = |
Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 3602 | dev_get_stats(slave->dev, &temp); |
Stephen Hemminger | eeda3fd | 2008-11-19 21:40:23 -0800 | [diff] [blame] | 3603 | |
Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 3604 | stats->rx_packets += sstats->rx_packets; |
| 3605 | stats->rx_bytes += sstats->rx_bytes; |
| 3606 | stats->rx_errors += sstats->rx_errors; |
| 3607 | stats->rx_dropped += sstats->rx_dropped; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3608 | |
Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 3609 | stats->tx_packets += sstats->tx_packets; |
| 3610 | stats->tx_bytes += sstats->tx_bytes; |
| 3611 | stats->tx_errors += sstats->tx_errors; |
| 3612 | stats->tx_dropped += sstats->tx_dropped; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3613 | |
Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 3614 | stats->multicast += sstats->multicast; |
| 3615 | stats->collisions += sstats->collisions; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3616 | |
Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 3617 | stats->rx_length_errors += sstats->rx_length_errors; |
| 3618 | stats->rx_over_errors += sstats->rx_over_errors; |
| 3619 | stats->rx_crc_errors += sstats->rx_crc_errors; |
| 3620 | stats->rx_frame_errors += sstats->rx_frame_errors; |
| 3621 | stats->rx_fifo_errors += sstats->rx_fifo_errors; |
| 3622 | stats->rx_missed_errors += sstats->rx_missed_errors; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3623 | |
Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 3624 | stats->tx_aborted_errors += sstats->tx_aborted_errors; |
| 3625 | stats->tx_carrier_errors += sstats->tx_carrier_errors; |
| 3626 | stats->tx_fifo_errors += sstats->tx_fifo_errors; |
| 3627 | stats->tx_heartbeat_errors += sstats->tx_heartbeat_errors; |
| 3628 | stats->tx_window_errors += sstats->tx_window_errors; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3629 | } |
| 3630 | |
| 3631 | read_unlock_bh(&bond->lock); |
| 3632 | |
| 3633 | return stats; |
| 3634 | } |
| 3635 | |
| 3636 | static int bond_do_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd) |
| 3637 | { |
| 3638 | struct net_device *slave_dev = NULL; |
| 3639 | struct ifbond k_binfo; |
| 3640 | struct ifbond __user *u_binfo = NULL; |
| 3641 | struct ifslave k_sinfo; |
| 3642 | struct ifslave __user *u_sinfo = NULL; |
| 3643 | struct mii_ioctl_data *mii = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3644 | int res = 0; |
| 3645 | |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 3646 | pr_debug("bond_ioctl: master=%s, cmd=%d\n", bond_dev->name, cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3647 | |
| 3648 | switch (cmd) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3649 | case SIOCGMIIPHY: |
| 3650 | mii = if_mii(ifr); |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3651 | if (!mii) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3652 | return -EINVAL; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3653 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3654 | mii->phy_id = 0; |
| 3655 | /* Fall Through */ |
| 3656 | case SIOCGMIIREG: |
| 3657 | /* |
| 3658 | * We do this again just in case we were called by SIOCGMIIREG |
| 3659 | * instead of SIOCGMIIPHY. |
| 3660 | */ |
| 3661 | mii = if_mii(ifr); |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3662 | if (!mii) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3663 | return -EINVAL; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3664 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3665 | |
| 3666 | if (mii->reg_num == 1) { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 3667 | struct bonding *bond = netdev_priv(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3668 | mii->val_out = 0; |
Jay Vosburgh | 6603a6f | 2007-10-17 17:37:50 -0700 | [diff] [blame] | 3669 | read_lock(&bond->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3670 | read_lock(&bond->curr_slave_lock); |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3671 | if (netif_carrier_ok(bond->dev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3672 | mii->val_out = BMSR_LSTATUS; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3673 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3674 | read_unlock(&bond->curr_slave_lock); |
Jay Vosburgh | 6603a6f | 2007-10-17 17:37:50 -0700 | [diff] [blame] | 3675 | read_unlock(&bond->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3676 | } |
| 3677 | |
| 3678 | return 0; |
| 3679 | case BOND_INFO_QUERY_OLD: |
| 3680 | case SIOCBONDINFOQUERY: |
| 3681 | u_binfo = (struct ifbond __user *)ifr->ifr_data; |
| 3682 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3683 | if (copy_from_user(&k_binfo, u_binfo, sizeof(ifbond))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3684 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3685 | |
| 3686 | res = bond_info_query(bond_dev, &k_binfo); |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3687 | if (res == 0 && |
| 3688 | copy_to_user(u_binfo, &k_binfo, sizeof(ifbond))) |
| 3689 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3690 | |
| 3691 | return res; |
| 3692 | case BOND_SLAVE_INFO_QUERY_OLD: |
| 3693 | case SIOCBONDSLAVEINFOQUERY: |
| 3694 | u_sinfo = (struct ifslave __user *)ifr->ifr_data; |
| 3695 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3696 | if (copy_from_user(&k_sinfo, u_sinfo, sizeof(ifslave))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3697 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3698 | |
| 3699 | res = bond_slave_info_query(bond_dev, &k_sinfo); |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3700 | if (res == 0 && |
| 3701 | copy_to_user(u_sinfo, &k_sinfo, sizeof(ifslave))) |
| 3702 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3703 | |
| 3704 | return res; |
| 3705 | default: |
| 3706 | /* Go on */ |
| 3707 | break; |
| 3708 | } |
| 3709 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3710 | if (!capable(CAP_NET_ADMIN)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3711 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3712 | |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 3713 | slave_dev = dev_get_by_name(dev_net(bond_dev), ifr->ifr_slave); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3714 | |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 3715 | pr_debug("slave_dev=%p:\n", slave_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3716 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3717 | if (!slave_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3718 | res = -ENODEV; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3719 | else { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 3720 | pr_debug("slave_dev->name=%s:\n", slave_dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3721 | switch (cmd) { |
| 3722 | case BOND_ENSLAVE_OLD: |
| 3723 | case SIOCBONDENSLAVE: |
| 3724 | res = bond_enslave(bond_dev, slave_dev); |
| 3725 | break; |
| 3726 | case BOND_RELEASE_OLD: |
| 3727 | case SIOCBONDRELEASE: |
| 3728 | res = bond_release(bond_dev, slave_dev); |
| 3729 | break; |
| 3730 | case BOND_SETHWADDR_OLD: |
| 3731 | case SIOCBONDSETHWADDR: |
| 3732 | res = bond_sethwaddr(bond_dev, slave_dev); |
| 3733 | break; |
| 3734 | case BOND_CHANGE_ACTIVE_OLD: |
| 3735 | case SIOCBONDCHANGEACTIVE: |
| 3736 | res = bond_ioctl_change_active(bond_dev, slave_dev); |
| 3737 | break; |
| 3738 | default: |
| 3739 | res = -EOPNOTSUPP; |
| 3740 | } |
| 3741 | |
| 3742 | dev_put(slave_dev); |
| 3743 | } |
| 3744 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3745 | return res; |
| 3746 | } |
| 3747 | |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 3748 | static bool bond_addr_in_mc_list(unsigned char *addr, |
| 3749 | struct netdev_hw_addr_list *list, |
| 3750 | int addrlen) |
| 3751 | { |
| 3752 | struct netdev_hw_addr *ha; |
| 3753 | |
| 3754 | netdev_hw_addr_list_for_each(ha, list) |
| 3755 | if (!memcmp(ha->addr, addr, addrlen)) |
| 3756 | return true; |
| 3757 | |
| 3758 | return false; |
| 3759 | } |
| 3760 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3761 | static void bond_set_multicast_list(struct net_device *bond_dev) |
| 3762 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 3763 | struct bonding *bond = netdev_priv(bond_dev); |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 3764 | struct netdev_hw_addr *ha; |
| 3765 | bool found; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3766 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3767 | /* |
| 3768 | * Do promisc before checking multicast_mode |
| 3769 | */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3770 | if ((bond_dev->flags & IFF_PROMISC) && !(bond->flags & IFF_PROMISC)) |
Wang Chen | 7e1a1ac | 2008-07-14 20:51:36 -0700 | [diff] [blame] | 3771 | /* |
| 3772 | * FIXME: Need to handle the error when one of the multi-slaves |
| 3773 | * encounters error. |
| 3774 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3775 | bond_set_promiscuity(bond, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3776 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3777 | |
| 3778 | if (!(bond_dev->flags & IFF_PROMISC) && (bond->flags & IFF_PROMISC)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3779 | bond_set_promiscuity(bond, -1); |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3780 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3781 | |
| 3782 | /* set allmulti flag to slaves */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3783 | if ((bond_dev->flags & IFF_ALLMULTI) && !(bond->flags & IFF_ALLMULTI)) |
Wang Chen | 7e1a1ac | 2008-07-14 20:51:36 -0700 | [diff] [blame] | 3784 | /* |
| 3785 | * FIXME: Need to handle the error when one of the multi-slaves |
| 3786 | * encounters error. |
| 3787 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3788 | bond_set_allmulti(bond, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3789 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3790 | |
| 3791 | if (!(bond_dev->flags & IFF_ALLMULTI) && (bond->flags & IFF_ALLMULTI)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3792 | bond_set_allmulti(bond, -1); |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3793 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3794 | |
Jay Vosburgh | 80ee5ad | 2008-01-29 18:07:44 -0800 | [diff] [blame] | 3795 | read_lock(&bond->lock); |
| 3796 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3797 | bond->flags = bond_dev->flags; |
| 3798 | |
| 3799 | /* looking for addresses to add to slaves' mc list */ |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 3800 | netdev_for_each_mc_addr(ha, bond_dev) { |
| 3801 | found = bond_addr_in_mc_list(ha->addr, &bond->mc_list, |
| 3802 | bond_dev->addr_len); |
| 3803 | if (!found) |
| 3804 | bond_mc_add(bond, ha->addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3805 | } |
| 3806 | |
| 3807 | /* looking for addresses to delete from slaves' list */ |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 3808 | netdev_hw_addr_list_for_each(ha, &bond->mc_list) { |
| 3809 | found = bond_addr_in_mc_list(ha->addr, &bond_dev->mc, |
| 3810 | bond_dev->addr_len); |
| 3811 | if (!found) |
| 3812 | bond_mc_del(bond, ha->addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3813 | } |
| 3814 | |
| 3815 | /* save master's multicast list */ |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 3816 | __hw_addr_flush(&bond->mc_list); |
| 3817 | __hw_addr_add_multiple(&bond->mc_list, &bond_dev->mc, |
| 3818 | bond_dev->addr_len, NETDEV_HW_ADDR_T_MULTICAST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3819 | |
Jay Vosburgh | 80ee5ad | 2008-01-29 18:07:44 -0800 | [diff] [blame] | 3820 | read_unlock(&bond->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3821 | } |
| 3822 | |
Stephen Hemminger | 0082982 | 2008-11-20 20:14:53 -0800 | [diff] [blame] | 3823 | static int bond_neigh_setup(struct net_device *dev, struct neigh_parms *parms) |
| 3824 | { |
| 3825 | struct bonding *bond = netdev_priv(dev); |
| 3826 | struct slave *slave = bond->first_slave; |
| 3827 | |
| 3828 | if (slave) { |
| 3829 | const struct net_device_ops *slave_ops |
| 3830 | = slave->dev->netdev_ops; |
| 3831 | if (slave_ops->ndo_neigh_setup) |
Patrick McHardy | 72e2240 | 2009-03-05 01:57:44 -0800 | [diff] [blame] | 3832 | return slave_ops->ndo_neigh_setup(slave->dev, parms); |
Stephen Hemminger | 0082982 | 2008-11-20 20:14:53 -0800 | [diff] [blame] | 3833 | } |
| 3834 | return 0; |
| 3835 | } |
| 3836 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3837 | /* |
| 3838 | * Change the MTU of all of a master's slaves to match the master |
| 3839 | */ |
| 3840 | static int bond_change_mtu(struct net_device *bond_dev, int new_mtu) |
| 3841 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 3842 | struct bonding *bond = netdev_priv(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3843 | struct slave *slave, *stop_at; |
| 3844 | int res = 0; |
| 3845 | int i; |
| 3846 | |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 3847 | pr_debug("bond=%p, name=%s, new_mtu=%d\n", bond, |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 3848 | (bond_dev ? bond_dev->name : "None"), new_mtu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3849 | |
| 3850 | /* Can't hold bond->lock with bh disabled here since |
| 3851 | * some base drivers panic. On the other hand we can't |
| 3852 | * hold bond->lock without bh disabled because we'll |
| 3853 | * deadlock. The only solution is to rely on the fact |
| 3854 | * that we're under rtnl_lock here, and the slaves |
| 3855 | * list won't change. This doesn't solve the problem |
| 3856 | * of setting the slave's MTU while it is |
| 3857 | * transmitting, but the assumption is that the base |
| 3858 | * driver can handle that. |
| 3859 | * |
| 3860 | * TODO: figure out a way to safely iterate the slaves |
| 3861 | * list, but without holding a lock around the actual |
| 3862 | * call to the base driver. |
| 3863 | */ |
| 3864 | |
| 3865 | bond_for_each_slave(bond, slave, i) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 3866 | pr_debug("s %p s->p %p c_m %p\n", |
| 3867 | slave, |
| 3868 | slave->prev, |
| 3869 | slave->dev->netdev_ops->ndo_change_mtu); |
Mitch Williams | e944ef7 | 2005-11-09 10:36:50 -0800 | [diff] [blame] | 3870 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3871 | res = dev_set_mtu(slave->dev, new_mtu); |
| 3872 | |
| 3873 | if (res) { |
| 3874 | /* If we failed to set the slave's mtu to the new value |
| 3875 | * we must abort the operation even in ACTIVE_BACKUP |
| 3876 | * mode, because if we allow the backup slaves to have |
| 3877 | * different mtu values than the active slave we'll |
| 3878 | * need to change their mtu when doing a failover. That |
| 3879 | * means changing their mtu from timer context, which |
| 3880 | * is probably not a good idea. |
| 3881 | */ |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 3882 | pr_debug("err %d %s\n", res, slave->dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3883 | goto unwind; |
| 3884 | } |
| 3885 | } |
| 3886 | |
| 3887 | bond_dev->mtu = new_mtu; |
| 3888 | |
| 3889 | return 0; |
| 3890 | |
| 3891 | unwind: |
| 3892 | /* unwind from head to the slave that failed */ |
| 3893 | stop_at = slave; |
| 3894 | bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) { |
| 3895 | int tmp_res; |
| 3896 | |
| 3897 | tmp_res = dev_set_mtu(slave->dev, bond_dev->mtu); |
| 3898 | if (tmp_res) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 3899 | pr_debug("unwind err %d dev %s\n", |
| 3900 | tmp_res, slave->dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3901 | } |
| 3902 | } |
| 3903 | |
| 3904 | return res; |
| 3905 | } |
| 3906 | |
| 3907 | /* |
| 3908 | * Change HW address |
| 3909 | * |
| 3910 | * Note that many devices must be down to change the HW address, and |
| 3911 | * downing the master releases all slaves. We can make bonds full of |
| 3912 | * bonding devices to test this, however. |
| 3913 | */ |
| 3914 | static int bond_set_mac_address(struct net_device *bond_dev, void *addr) |
| 3915 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 3916 | struct bonding *bond = netdev_priv(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3917 | struct sockaddr *sa = addr, tmp_sa; |
| 3918 | struct slave *slave, *stop_at; |
| 3919 | int res = 0; |
| 3920 | int i; |
| 3921 | |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 3922 | if (bond->params.mode == BOND_MODE_ALB) |
| 3923 | return bond_alb_set_mac_address(bond_dev, addr); |
| 3924 | |
| 3925 | |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 3926 | pr_debug("bond=%p, name=%s\n", |
| 3927 | bond, bond_dev ? bond_dev->name : "None"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3928 | |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 3929 | /* |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 3930 | * If fail_over_mac is set to active, do nothing and return |
| 3931 | * success. Returning an error causes ifenslave to fail. |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 3932 | */ |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 3933 | if (bond->params.fail_over_mac == BOND_FOM_ACTIVE) |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 3934 | return 0; |
Moni Shoua | 2ab8285 | 2007-10-09 19:43:39 -0700 | [diff] [blame] | 3935 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 3936 | if (!is_valid_ether_addr(sa->sa_data)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3937 | return -EADDRNOTAVAIL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3938 | |
| 3939 | /* Can't hold bond->lock with bh disabled here since |
| 3940 | * some base drivers panic. On the other hand we can't |
| 3941 | * hold bond->lock without bh disabled because we'll |
| 3942 | * deadlock. The only solution is to rely on the fact |
| 3943 | * that we're under rtnl_lock here, and the slaves |
| 3944 | * list won't change. This doesn't solve the problem |
| 3945 | * of setting the slave's hw address while it is |
| 3946 | * transmitting, but the assumption is that the base |
| 3947 | * driver can handle that. |
| 3948 | * |
| 3949 | * TODO: figure out a way to safely iterate the slaves |
| 3950 | * list, but without holding a lock around the actual |
| 3951 | * call to the base driver. |
| 3952 | */ |
| 3953 | |
| 3954 | bond_for_each_slave(bond, slave, i) { |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 3955 | const struct net_device_ops *slave_ops = slave->dev->netdev_ops; |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 3956 | pr_debug("slave %p %s\n", slave, slave->dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3957 | |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 3958 | if (slave_ops->ndo_set_mac_address == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3959 | res = -EOPNOTSUPP; |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 3960 | pr_debug("EOPNOTSUPP %s\n", slave->dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3961 | goto unwind; |
| 3962 | } |
| 3963 | |
| 3964 | res = dev_set_mac_address(slave->dev, addr); |
| 3965 | if (res) { |
| 3966 | /* TODO: consider downing the slave |
| 3967 | * and retry ? |
| 3968 | * User should expect communications |
| 3969 | * breakage anyway until ARP finish |
| 3970 | * updating, so... |
| 3971 | */ |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 3972 | pr_debug("err %d %s\n", res, slave->dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3973 | goto unwind; |
| 3974 | } |
| 3975 | } |
| 3976 | |
| 3977 | /* success */ |
| 3978 | memcpy(bond_dev->dev_addr, sa->sa_data, bond_dev->addr_len); |
| 3979 | return 0; |
| 3980 | |
| 3981 | unwind: |
| 3982 | memcpy(tmp_sa.sa_data, bond_dev->dev_addr, bond_dev->addr_len); |
| 3983 | tmp_sa.sa_family = bond_dev->type; |
| 3984 | |
| 3985 | /* unwind from head to the slave that failed */ |
| 3986 | stop_at = slave; |
| 3987 | bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) { |
| 3988 | int tmp_res; |
| 3989 | |
| 3990 | tmp_res = dev_set_mac_address(slave->dev, &tmp_sa); |
| 3991 | if (tmp_res) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 3992 | pr_debug("unwind err %d dev %s\n", |
| 3993 | tmp_res, slave->dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3994 | } |
| 3995 | } |
| 3996 | |
| 3997 | return res; |
| 3998 | } |
| 3999 | |
| 4000 | static int bond_xmit_roundrobin(struct sk_buff *skb, struct net_device *bond_dev) |
| 4001 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 4002 | struct bonding *bond = netdev_priv(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4003 | struct slave *slave, *start_at; |
Jay Vosburgh | cf5f904 | 2007-10-17 17:37:47 -0700 | [diff] [blame] | 4004 | int i, slave_no, res = 1; |
Andy Gospodarek | a2fd940 | 2010-03-25 14:49:05 +0000 | [diff] [blame] | 4005 | struct iphdr *iph = ip_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4006 | |
| 4007 | read_lock(&bond->lock); |
| 4008 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 4009 | if (!BOND_IS_OK(bond)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4010 | goto out; |
Jay Vosburgh | cf5f904 | 2007-10-17 17:37:47 -0700 | [diff] [blame] | 4011 | /* |
Andy Gospodarek | a2fd940 | 2010-03-25 14:49:05 +0000 | [diff] [blame] | 4012 | * Start with the curr_active_slave that joined the bond as the |
| 4013 | * default for sending IGMP traffic. For failover purposes one |
| 4014 | * needs to maintain some consistency for the interface that will |
| 4015 | * send the join/membership reports. The curr_active_slave found |
| 4016 | * will send all of this type of traffic. |
Jay Vosburgh | cf5f904 | 2007-10-17 17:37:47 -0700 | [diff] [blame] | 4017 | */ |
Eric Dumazet | 00ae702 | 2010-03-30 23:08:37 +0000 | [diff] [blame] | 4018 | if ((iph->protocol == IPPROTO_IGMP) && |
Andy Gospodarek | a2fd940 | 2010-03-25 14:49:05 +0000 | [diff] [blame] | 4019 | (skb->protocol == htons(ETH_P_IP))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4020 | |
Andy Gospodarek | a2fd940 | 2010-03-25 14:49:05 +0000 | [diff] [blame] | 4021 | read_lock(&bond->curr_slave_lock); |
| 4022 | slave = bond->curr_active_slave; |
| 4023 | read_unlock(&bond->curr_slave_lock); |
| 4024 | |
| 4025 | if (!slave) |
| 4026 | goto out; |
| 4027 | } else { |
| 4028 | /* |
| 4029 | * Concurrent TX may collide on rr_tx_counter; we accept |
| 4030 | * that as being rare enough not to justify using an |
| 4031 | * atomic op here. |
| 4032 | */ |
| 4033 | slave_no = bond->rr_tx_counter++ % bond->slave_cnt; |
| 4034 | |
| 4035 | bond_for_each_slave(bond, slave, i) { |
| 4036 | slave_no--; |
| 4037 | if (slave_no < 0) |
| 4038 | break; |
| 4039 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4040 | } |
| 4041 | |
Jay Vosburgh | cf5f904 | 2007-10-17 17:37:47 -0700 | [diff] [blame] | 4042 | start_at = slave; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4043 | bond_for_each_slave_from(bond, slave, i, start_at) { |
| 4044 | if (IS_UP(slave->dev) && |
| 4045 | (slave->link == BOND_LINK_UP) && |
Jiri Pirko | e30bc06 | 2011-03-12 03:14:37 +0000 | [diff] [blame] | 4046 | bond_is_active_slave(slave)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4047 | res = bond_dev_queue_xmit(bond, skb, slave->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4048 | break; |
| 4049 | } |
| 4050 | } |
| 4051 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4052 | out: |
| 4053 | if (res) { |
| 4054 | /* no suitable interface, frame not sent */ |
| 4055 | dev_kfree_skb(skb); |
| 4056 | } |
| 4057 | read_unlock(&bond->lock); |
Patrick McHardy | ec634fe | 2009-07-05 19:23:38 -0700 | [diff] [blame] | 4058 | return NETDEV_TX_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4059 | } |
| 4060 | |
John W. Linville | 075897c | 2005-09-28 17:50:53 -0400 | [diff] [blame] | 4061 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4062 | /* |
| 4063 | * in active-backup mode, we know that bond->curr_active_slave is always valid if |
| 4064 | * the bond has a usable interface. |
| 4065 | */ |
| 4066 | static int bond_xmit_activebackup(struct sk_buff *skb, struct net_device *bond_dev) |
| 4067 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 4068 | struct bonding *bond = netdev_priv(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4069 | int res = 1; |
| 4070 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4071 | read_lock(&bond->lock); |
| 4072 | read_lock(&bond->curr_slave_lock); |
| 4073 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 4074 | if (!BOND_IS_OK(bond)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4075 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4076 | |
John W. Linville | 075897c | 2005-09-28 17:50:53 -0400 | [diff] [blame] | 4077 | if (!bond->curr_active_slave) |
| 4078 | goto out; |
| 4079 | |
John W. Linville | 075897c | 2005-09-28 17:50:53 -0400 | [diff] [blame] | 4080 | res = bond_dev_queue_xmit(bond, skb, bond->curr_active_slave->dev); |
| 4081 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4082 | out: |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 4083 | if (res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4084 | /* no suitable interface, frame not sent */ |
| 4085 | dev_kfree_skb(skb); |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 4086 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4087 | read_unlock(&bond->curr_slave_lock); |
| 4088 | read_unlock(&bond->lock); |
Patrick McHardy | ec634fe | 2009-07-05 19:23:38 -0700 | [diff] [blame] | 4089 | return NETDEV_TX_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4090 | } |
| 4091 | |
| 4092 | /* |
Jay Vosburgh | 169a3e6 | 2005-06-26 17:54:11 -0400 | [diff] [blame] | 4093 | * In bond_xmit_xor() , we determine the output device by using a pre- |
| 4094 | * determined xmit_hash_policy(), If the selected device is not enabled, |
| 4095 | * find the next active slave. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4096 | */ |
| 4097 | static int bond_xmit_xor(struct sk_buff *skb, struct net_device *bond_dev) |
| 4098 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 4099 | struct bonding *bond = netdev_priv(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4100 | struct slave *slave, *start_at; |
| 4101 | int slave_no; |
| 4102 | int i; |
| 4103 | int res = 1; |
| 4104 | |
| 4105 | read_lock(&bond->lock); |
| 4106 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 4107 | if (!BOND_IS_OK(bond)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4108 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4109 | |
Jasper Spaans | a361c83 | 2009-10-23 04:09:24 +0000 | [diff] [blame] | 4110 | slave_no = bond->xmit_hash_policy(skb, bond->slave_cnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4111 | |
| 4112 | bond_for_each_slave(bond, slave, i) { |
| 4113 | slave_no--; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 4114 | if (slave_no < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4115 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4116 | } |
| 4117 | |
| 4118 | start_at = slave; |
| 4119 | |
| 4120 | bond_for_each_slave_from(bond, slave, i, start_at) { |
| 4121 | if (IS_UP(slave->dev) && |
| 4122 | (slave->link == BOND_LINK_UP) && |
Jiri Pirko | e30bc06 | 2011-03-12 03:14:37 +0000 | [diff] [blame] | 4123 | bond_is_active_slave(slave)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4124 | res = bond_dev_queue_xmit(bond, skb, slave->dev); |
| 4125 | break; |
| 4126 | } |
| 4127 | } |
| 4128 | |
| 4129 | out: |
| 4130 | if (res) { |
| 4131 | /* no suitable interface, frame not sent */ |
| 4132 | dev_kfree_skb(skb); |
| 4133 | } |
| 4134 | read_unlock(&bond->lock); |
Patrick McHardy | ec634fe | 2009-07-05 19:23:38 -0700 | [diff] [blame] | 4135 | return NETDEV_TX_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4136 | } |
| 4137 | |
| 4138 | /* |
| 4139 | * in broadcast mode, we send everything to all usable interfaces. |
| 4140 | */ |
| 4141 | static int bond_xmit_broadcast(struct sk_buff *skb, struct net_device *bond_dev) |
| 4142 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 4143 | struct bonding *bond = netdev_priv(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4144 | struct slave *slave, *start_at; |
| 4145 | struct net_device *tx_dev = NULL; |
| 4146 | int i; |
| 4147 | int res = 1; |
| 4148 | |
| 4149 | read_lock(&bond->lock); |
| 4150 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 4151 | if (!BOND_IS_OK(bond)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4152 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4153 | |
| 4154 | read_lock(&bond->curr_slave_lock); |
| 4155 | start_at = bond->curr_active_slave; |
| 4156 | read_unlock(&bond->curr_slave_lock); |
| 4157 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 4158 | if (!start_at) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4159 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4160 | |
| 4161 | bond_for_each_slave_from(bond, slave, i, start_at) { |
| 4162 | if (IS_UP(slave->dev) && |
| 4163 | (slave->link == BOND_LINK_UP) && |
Jiri Pirko | e30bc06 | 2011-03-12 03:14:37 +0000 | [diff] [blame] | 4164 | bond_is_active_slave(slave)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4165 | if (tx_dev) { |
| 4166 | struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC); |
| 4167 | if (!skb2) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4168 | pr_err("%s: Error: bond_xmit_broadcast(): skb_clone() failed\n", |
Mitch Williams | 4e0952c | 2005-11-09 10:34:57 -0800 | [diff] [blame] | 4169 | bond_dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4170 | continue; |
| 4171 | } |
| 4172 | |
| 4173 | res = bond_dev_queue_xmit(bond, skb2, tx_dev); |
| 4174 | if (res) { |
| 4175 | dev_kfree_skb(skb2); |
| 4176 | continue; |
| 4177 | } |
| 4178 | } |
| 4179 | tx_dev = slave->dev; |
| 4180 | } |
| 4181 | } |
| 4182 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 4183 | if (tx_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4184 | res = bond_dev_queue_xmit(bond, skb, tx_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4185 | |
| 4186 | out: |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 4187 | if (res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4188 | /* no suitable interface, frame not sent */ |
| 4189 | dev_kfree_skb(skb); |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 4190 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4191 | /* frame sent to all suitable interfaces */ |
| 4192 | read_unlock(&bond->lock); |
Patrick McHardy | ec634fe | 2009-07-05 19:23:38 -0700 | [diff] [blame] | 4193 | return NETDEV_TX_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4194 | } |
| 4195 | |
| 4196 | /*------------------------- Device initialization ---------------------------*/ |
| 4197 | |
Jay Vosburgh | 6f6652b | 2007-12-06 23:40:34 -0800 | [diff] [blame] | 4198 | static void bond_set_xmit_hash_policy(struct bonding *bond) |
| 4199 | { |
| 4200 | switch (bond->params.xmit_policy) { |
| 4201 | case BOND_XMIT_POLICY_LAYER23: |
| 4202 | bond->xmit_hash_policy = bond_xmit_hash_policy_l23; |
| 4203 | break; |
| 4204 | case BOND_XMIT_POLICY_LAYER34: |
| 4205 | bond->xmit_hash_policy = bond_xmit_hash_policy_l34; |
| 4206 | break; |
| 4207 | case BOND_XMIT_POLICY_LAYER2: |
| 4208 | default: |
| 4209 | bond->xmit_hash_policy = bond_xmit_hash_policy_l2; |
| 4210 | break; |
| 4211 | } |
| 4212 | } |
| 4213 | |
Andy Gospodarek | bb1d912 | 2010-06-02 08:40:18 +0000 | [diff] [blame] | 4214 | /* |
| 4215 | * Lookup the slave that corresponds to a qid |
| 4216 | */ |
| 4217 | static inline int bond_slave_override(struct bonding *bond, |
| 4218 | struct sk_buff *skb) |
| 4219 | { |
| 4220 | int i, res = 1; |
| 4221 | struct slave *slave = NULL; |
| 4222 | struct slave *check_slave; |
| 4223 | |
| 4224 | read_lock(&bond->lock); |
| 4225 | |
| 4226 | if (!BOND_IS_OK(bond) || !skb->queue_mapping) |
| 4227 | goto out; |
| 4228 | |
| 4229 | /* Find out if any slaves have the same mapping as this skb. */ |
| 4230 | bond_for_each_slave(bond, check_slave, i) { |
| 4231 | if (check_slave->queue_id == skb->queue_mapping) { |
| 4232 | slave = check_slave; |
| 4233 | break; |
| 4234 | } |
| 4235 | } |
| 4236 | |
| 4237 | /* If the slave isn't UP, use default transmit policy. */ |
| 4238 | if (slave && slave->queue_id && IS_UP(slave->dev) && |
| 4239 | (slave->link == BOND_LINK_UP)) { |
| 4240 | res = bond_dev_queue_xmit(bond, skb, slave->dev); |
| 4241 | } |
| 4242 | |
| 4243 | out: |
| 4244 | read_unlock(&bond->lock); |
| 4245 | return res; |
| 4246 | } |
| 4247 | |
| 4248 | static u16 bond_select_queue(struct net_device *dev, struct sk_buff *skb) |
| 4249 | { |
| 4250 | /* |
| 4251 | * This helper function exists to help dev_pick_tx get the correct |
Phil Oester | fd0e435 | 2011-03-14 06:22:04 +0000 | [diff] [blame] | 4252 | * destination queue. Using a helper function skips a call to |
Andy Gospodarek | bb1d912 | 2010-06-02 08:40:18 +0000 | [diff] [blame] | 4253 | * skb_tx_hash and will put the skbs in the queue we expect on their |
| 4254 | * way down to the bonding driver. |
| 4255 | */ |
Phil Oester | fd0e435 | 2011-03-14 06:22:04 +0000 | [diff] [blame] | 4256 | u16 txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) : 0; |
| 4257 | |
| 4258 | if (unlikely(txq >= dev->real_num_tx_queues)) { |
David Decotigny | d30ee67 | 2011-04-13 15:22:29 +0000 | [diff] [blame] | 4259 | do { |
Phil Oester | fd0e435 | 2011-03-14 06:22:04 +0000 | [diff] [blame] | 4260 | txq -= dev->real_num_tx_queues; |
David Decotigny | d30ee67 | 2011-04-13 15:22:29 +0000 | [diff] [blame] | 4261 | } while (txq >= dev->real_num_tx_queues); |
Phil Oester | fd0e435 | 2011-03-14 06:22:04 +0000 | [diff] [blame] | 4262 | } |
| 4263 | return txq; |
Andy Gospodarek | bb1d912 | 2010-06-02 08:40:18 +0000 | [diff] [blame] | 4264 | } |
| 4265 | |
Stephen Hemminger | 424efe9 | 2009-08-31 19:50:51 +0000 | [diff] [blame] | 4266 | static netdev_tx_t bond_start_xmit(struct sk_buff *skb, struct net_device *dev) |
Stephen Hemminger | 0082982 | 2008-11-20 20:14:53 -0800 | [diff] [blame] | 4267 | { |
Andy Gospodarek | bb1d912 | 2010-06-02 08:40:18 +0000 | [diff] [blame] | 4268 | struct bonding *bond = netdev_priv(dev); |
| 4269 | |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 4270 | /* |
| 4271 | * If we risk deadlock from transmitting this in the |
| 4272 | * netpoll path, tell netpoll to queue the frame for later tx |
| 4273 | */ |
| 4274 | if (is_netpoll_tx_blocked(dev)) |
| 4275 | return NETDEV_TX_BUSY; |
| 4276 | |
Andy Gospodarek | bb1d912 | 2010-06-02 08:40:18 +0000 | [diff] [blame] | 4277 | if (TX_QUEUE_OVERRIDE(bond->params.mode)) { |
| 4278 | if (!bond_slave_override(bond, skb)) |
| 4279 | return NETDEV_TX_OK; |
| 4280 | } |
Stephen Hemminger | 0082982 | 2008-11-20 20:14:53 -0800 | [diff] [blame] | 4281 | |
| 4282 | switch (bond->params.mode) { |
| 4283 | case BOND_MODE_ROUNDROBIN: |
| 4284 | return bond_xmit_roundrobin(skb, dev); |
| 4285 | case BOND_MODE_ACTIVEBACKUP: |
| 4286 | return bond_xmit_activebackup(skb, dev); |
| 4287 | case BOND_MODE_XOR: |
| 4288 | return bond_xmit_xor(skb, dev); |
| 4289 | case BOND_MODE_BROADCAST: |
| 4290 | return bond_xmit_broadcast(skb, dev); |
| 4291 | case BOND_MODE_8023AD: |
| 4292 | return bond_3ad_xmit_xor(skb, dev); |
| 4293 | case BOND_MODE_ALB: |
| 4294 | case BOND_MODE_TLB: |
| 4295 | return bond_alb_xmit(skb, dev); |
| 4296 | default: |
| 4297 | /* Should never happen, mode already checked */ |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4298 | pr_err("%s: Error: Unknown bonding mode %d\n", |
| 4299 | dev->name, bond->params.mode); |
Stephen Hemminger | 0082982 | 2008-11-20 20:14:53 -0800 | [diff] [blame] | 4300 | WARN_ON_ONCE(1); |
| 4301 | dev_kfree_skb(skb); |
| 4302 | return NETDEV_TX_OK; |
| 4303 | } |
| 4304 | } |
| 4305 | |
| 4306 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4307 | /* |
| 4308 | * set bond mode specific net device operations |
| 4309 | */ |
Mitch Williams | a77b532 | 2005-11-09 10:35:51 -0800 | [diff] [blame] | 4310 | void bond_set_mode_ops(struct bonding *bond, int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4311 | { |
Jay Vosburgh | 169a3e6 | 2005-06-26 17:54:11 -0400 | [diff] [blame] | 4312 | struct net_device *bond_dev = bond->dev; |
| 4313 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4314 | switch (mode) { |
| 4315 | case BOND_MODE_ROUNDROBIN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4316 | break; |
| 4317 | case BOND_MODE_ACTIVEBACKUP: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4318 | break; |
| 4319 | case BOND_MODE_XOR: |
Jay Vosburgh | 6f6652b | 2007-12-06 23:40:34 -0800 | [diff] [blame] | 4320 | bond_set_xmit_hash_policy(bond); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4321 | break; |
| 4322 | case BOND_MODE_BROADCAST: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4323 | break; |
| 4324 | case BOND_MODE_8023AD: |
Jay Vosburgh | 6f6652b | 2007-12-06 23:40:34 -0800 | [diff] [blame] | 4325 | bond_set_xmit_hash_policy(bond); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4326 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4327 | case BOND_MODE_ALB: |
Jay Vosburgh | 8f903c7 | 2006-02-21 16:36:44 -0800 | [diff] [blame] | 4328 | /* FALLTHRU */ |
| 4329 | case BOND_MODE_TLB: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4330 | break; |
| 4331 | default: |
| 4332 | /* Should never happen, mode already checked */ |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4333 | pr_err("%s: Error: Unknown bonding mode %d\n", |
| 4334 | bond_dev->name, mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4335 | break; |
| 4336 | } |
| 4337 | } |
| 4338 | |
Jay Vosburgh | 217df67 | 2005-09-26 16:11:50 -0700 | [diff] [blame] | 4339 | static void bond_ethtool_get_drvinfo(struct net_device *bond_dev, |
| 4340 | struct ethtool_drvinfo *drvinfo) |
| 4341 | { |
| 4342 | strncpy(drvinfo->driver, DRV_NAME, 32); |
| 4343 | strncpy(drvinfo->version, DRV_VERSION, 32); |
| 4344 | snprintf(drvinfo->fw_version, 32, "%d", BOND_ABI_VERSION); |
| 4345 | } |
| 4346 | |
Jeff Garzik | 7282d49 | 2006-09-13 14:30:00 -0400 | [diff] [blame] | 4347 | static const struct ethtool_ops bond_ethtool_ops = { |
Jay Vosburgh | 217df67 | 2005-09-26 16:11:50 -0700 | [diff] [blame] | 4348 | .get_drvinfo = bond_ethtool_get_drvinfo, |
Stephen Hemminger | fa53eba | 2008-09-13 21:17:09 -0400 | [diff] [blame] | 4349 | .get_link = ethtool_op_get_link, |
| 4350 | .get_tx_csum = ethtool_op_get_tx_csum, |
| 4351 | .get_sg = ethtool_op_get_sg, |
| 4352 | .get_tso = ethtool_op_get_tso, |
| 4353 | .get_ufo = ethtool_op_get_ufo, |
| 4354 | .get_flags = ethtool_op_get_flags, |
Arthur Kepner | 8531c5f | 2005-08-23 01:34:53 -0400 | [diff] [blame] | 4355 | }; |
| 4356 | |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 4357 | static const struct net_device_ops bond_netdev_ops = { |
Stephen Hemminger | 181470f | 2009-06-12 19:02:52 +0000 | [diff] [blame] | 4358 | .ndo_init = bond_init, |
Stephen Hemminger | 9e71626 | 2009-06-12 19:02:47 +0000 | [diff] [blame] | 4359 | .ndo_uninit = bond_uninit, |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 4360 | .ndo_open = bond_open, |
| 4361 | .ndo_stop = bond_close, |
Stephen Hemminger | 0082982 | 2008-11-20 20:14:53 -0800 | [diff] [blame] | 4362 | .ndo_start_xmit = bond_start_xmit, |
Andy Gospodarek | bb1d912 | 2010-06-02 08:40:18 +0000 | [diff] [blame] | 4363 | .ndo_select_queue = bond_select_queue, |
Ben Hutchings | be1f3c2 | 2010-06-08 07:19:54 +0000 | [diff] [blame] | 4364 | .ndo_get_stats64 = bond_get_stats, |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 4365 | .ndo_do_ioctl = bond_do_ioctl, |
| 4366 | .ndo_set_multicast_list = bond_set_multicast_list, |
| 4367 | .ndo_change_mtu = bond_change_mtu, |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 4368 | .ndo_set_mac_address = bond_set_mac_address, |
Stephen Hemminger | 0082982 | 2008-11-20 20:14:53 -0800 | [diff] [blame] | 4369 | .ndo_neigh_setup = bond_neigh_setup, |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 4370 | .ndo_vlan_rx_register = bond_vlan_rx_register, |
| 4371 | .ndo_vlan_rx_add_vid = bond_vlan_rx_add_vid, |
| 4372 | .ndo_vlan_rx_kill_vid = bond_vlan_rx_kill_vid, |
WANG Cong | f6dc31a | 2010-05-06 00:48:51 -0700 | [diff] [blame] | 4373 | #ifdef CONFIG_NET_POLL_CONTROLLER |
Amerigo Wang | 8a8efa2 | 2011-02-17 23:43:32 +0000 | [diff] [blame] | 4374 | .ndo_netpoll_setup = bond_netpoll_setup, |
WANG Cong | f6dc31a | 2010-05-06 00:48:51 -0700 | [diff] [blame] | 4375 | .ndo_netpoll_cleanup = bond_netpoll_cleanup, |
| 4376 | .ndo_poll_controller = bond_poll_controller, |
| 4377 | #endif |
Jiri Pirko | 9232ecc | 2011-02-13 09:33:01 +0000 | [diff] [blame] | 4378 | .ndo_add_slave = bond_enslave, |
| 4379 | .ndo_del_slave = bond_release, |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 4380 | }; |
| 4381 | |
Amerigo Wang | 9e2e61f | 2010-03-31 21:30:52 +0000 | [diff] [blame] | 4382 | static void bond_destructor(struct net_device *bond_dev) |
| 4383 | { |
| 4384 | struct bonding *bond = netdev_priv(bond_dev); |
| 4385 | if (bond->wq) |
| 4386 | destroy_workqueue(bond->wq); |
| 4387 | free_netdev(bond_dev); |
| 4388 | } |
| 4389 | |
Stephen Hemminger | 181470f | 2009-06-12 19:02:52 +0000 | [diff] [blame] | 4390 | static void bond_setup(struct net_device *bond_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4391 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 4392 | struct bonding *bond = netdev_priv(bond_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4393 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4394 | /* initialize rwlocks */ |
| 4395 | rwlock_init(&bond->lock); |
| 4396 | rwlock_init(&bond->curr_slave_lock); |
| 4397 | |
Stephen Hemminger | d2991f7 | 2009-06-12 19:02:44 +0000 | [diff] [blame] | 4398 | bond->params = bonding_defaults; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4399 | |
| 4400 | /* Initialize pointers */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4401 | bond->dev = bond_dev; |
| 4402 | INIT_LIST_HEAD(&bond->vlan_list); |
| 4403 | |
| 4404 | /* Initialize the device entry points */ |
Stephen Hemminger | 181470f | 2009-06-12 19:02:52 +0000 | [diff] [blame] | 4405 | ether_setup(bond_dev); |
Stephen Hemminger | eb7cc59 | 2008-11-19 21:56:05 -0800 | [diff] [blame] | 4406 | bond_dev->netdev_ops = &bond_netdev_ops; |
Arthur Kepner | 8531c5f | 2005-08-23 01:34:53 -0400 | [diff] [blame] | 4407 | bond_dev->ethtool_ops = &bond_ethtool_ops; |
Jay Vosburgh | 169a3e6 | 2005-06-26 17:54:11 -0400 | [diff] [blame] | 4408 | bond_set_mode_ops(bond, bond->params.mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4409 | |
Amerigo Wang | 9e2e61f | 2010-03-31 21:30:52 +0000 | [diff] [blame] | 4410 | bond_dev->destructor = bond_destructor; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4411 | |
| 4412 | /* Initialize the device options */ |
| 4413 | bond_dev->tx_queue_len = 0; |
| 4414 | bond_dev->flags |= IFF_MASTER|IFF_MULTICAST; |
Jay Vosburgh | 0b680e7 | 2006-09-22 21:54:10 -0700 | [diff] [blame] | 4415 | bond_dev->priv_flags |= IFF_BONDING; |
Stephen Hemminger | 181470f | 2009-06-12 19:02:52 +0000 | [diff] [blame] | 4416 | bond_dev->priv_flags &= ~IFF_XMIT_DST_RELEASE; |
| 4417 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4418 | /* At first, we block adding VLANs. That's the only way to |
| 4419 | * prevent problems that occur when adding VLANs over an |
| 4420 | * empty bond. The block will be removed once non-challenged |
| 4421 | * slaves are enslaved. |
| 4422 | */ |
| 4423 | bond_dev->features |= NETIF_F_VLAN_CHALLENGED; |
| 4424 | |
Herbert Xu | 932ff27 | 2006-06-09 12:20:56 -0700 | [diff] [blame] | 4425 | /* don't acquire bond device's netif_tx_lock when |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4426 | * transmitting */ |
| 4427 | bond_dev->features |= NETIF_F_LLTX; |
| 4428 | |
| 4429 | /* By default, we declare the bond to be fully |
| 4430 | * VLAN hardware accelerated capable. Special |
| 4431 | * care is taken in the various xmit functions |
| 4432 | * when there are slaves that are not hw accel |
| 4433 | * capable |
| 4434 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4435 | bond_dev->features |= (NETIF_F_HW_VLAN_TX | |
| 4436 | NETIF_F_HW_VLAN_RX | |
| 4437 | NETIF_F_HW_VLAN_FILTER); |
| 4438 | |
Eric Dumazet | e6599c2 | 2010-09-17 09:25:07 +0000 | [diff] [blame] | 4439 | /* By default, we enable GRO on bonding devices. |
| 4440 | * Actual support requires lowlevel drivers are GRO ready. |
| 4441 | */ |
| 4442 | bond_dev->features |= NETIF_F_GRO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4443 | } |
| 4444 | |
Jay Vosburgh | fdaea7a | 2007-12-06 23:40:35 -0800 | [diff] [blame] | 4445 | static void bond_work_cancel_all(struct bonding *bond) |
| 4446 | { |
| 4447 | write_lock_bh(&bond->lock); |
| 4448 | bond->kill_timers = 1; |
| 4449 | write_unlock_bh(&bond->lock); |
| 4450 | |
| 4451 | if (bond->params.miimon && delayed_work_pending(&bond->mii_work)) |
| 4452 | cancel_delayed_work(&bond->mii_work); |
| 4453 | |
| 4454 | if (bond->params.arp_interval && delayed_work_pending(&bond->arp_work)) |
| 4455 | cancel_delayed_work(&bond->arp_work); |
| 4456 | |
| 4457 | if (bond->params.mode == BOND_MODE_ALB && |
| 4458 | delayed_work_pending(&bond->alb_work)) |
| 4459 | cancel_delayed_work(&bond->alb_work); |
| 4460 | |
| 4461 | if (bond->params.mode == BOND_MODE_8023AD && |
| 4462 | delayed_work_pending(&bond->ad_work)) |
| 4463 | cancel_delayed_work(&bond->ad_work); |
Flavio Leitner | 5a37e8c | 2010-10-05 14:23:57 +0000 | [diff] [blame] | 4464 | |
| 4465 | if (delayed_work_pending(&bond->mcast_work)) |
| 4466 | cancel_delayed_work(&bond->mcast_work); |
Jay Vosburgh | fdaea7a | 2007-12-06 23:40:35 -0800 | [diff] [blame] | 4467 | } |
| 4468 | |
Eric W. Biederman | c67dfb2 | 2009-10-29 14:18:24 +0000 | [diff] [blame] | 4469 | /* |
| 4470 | * Destroy a bonding device. |
| 4471 | * Must be under rtnl_lock when this function is called. |
| 4472 | */ |
| 4473 | static void bond_uninit(struct net_device *bond_dev) |
Jay Vosburgh | a434e43 | 2008-10-30 17:41:15 -0700 | [diff] [blame] | 4474 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 4475 | struct bonding *bond = netdev_priv(bond_dev); |
Jay Vosburgh | f35188f | 2010-07-21 12:14:47 +0000 | [diff] [blame] | 4476 | struct vlan_entry *vlan, *tmp; |
Jay Vosburgh | a434e43 | 2008-10-30 17:41:15 -0700 | [diff] [blame] | 4477 | |
WANG Cong | f6dc31a | 2010-05-06 00:48:51 -0700 | [diff] [blame] | 4478 | bond_netpoll_cleanup(bond_dev); |
| 4479 | |
Eric W. Biederman | c67dfb2 | 2009-10-29 14:18:24 +0000 | [diff] [blame] | 4480 | /* Release the bonded slaves */ |
| 4481 | bond_release_all(bond_dev); |
| 4482 | |
Jay Vosburgh | a434e43 | 2008-10-30 17:41:15 -0700 | [diff] [blame] | 4483 | list_del(&bond->bond_list); |
| 4484 | |
| 4485 | bond_work_cancel_all(bond); |
| 4486 | |
Jay Vosburgh | a434e43 | 2008-10-30 17:41:15 -0700 | [diff] [blame] | 4487 | bond_remove_proc_entry(bond); |
Eric W. Biederman | c67dfb2 | 2009-10-29 14:18:24 +0000 | [diff] [blame] | 4488 | |
Taku Izumi | f073c7c | 2010-12-09 15:17:13 +0000 | [diff] [blame] | 4489 | bond_debug_unregister(bond); |
| 4490 | |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 4491 | __hw_addr_flush(&bond->mc_list); |
Jay Vosburgh | f35188f | 2010-07-21 12:14:47 +0000 | [diff] [blame] | 4492 | |
| 4493 | list_for_each_entry_safe(vlan, tmp, &bond->vlan_list, vlan_list) { |
| 4494 | list_del(&vlan->vlan_list); |
| 4495 | kfree(vlan); |
| 4496 | } |
Jay Vosburgh | a434e43 | 2008-10-30 17:41:15 -0700 | [diff] [blame] | 4497 | } |
| 4498 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4499 | /*------------------------- Module initialization ---------------------------*/ |
| 4500 | |
| 4501 | /* |
| 4502 | * Convert string input module parms. Accept either the |
Jay Vosburgh | ece95f7 | 2008-01-17 16:25:01 -0800 | [diff] [blame] | 4503 | * number of the mode or its string name. A bit complicated because |
| 4504 | * some mode names are substrings of other names, and calls from sysfs |
| 4505 | * may have whitespace in the name (trailing newlines, for example). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4506 | */ |
Holger Eitzenberger | 325dcf7 | 2008-12-09 23:10:17 -0800 | [diff] [blame] | 4507 | int bond_parse_parm(const char *buf, const struct bond_parm_tbl *tbl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4508 | { |
Hannes Eder | 54b8732 | 2009-02-14 11:15:49 +0000 | [diff] [blame] | 4509 | int modeint = -1, i, rv; |
Jay Vosburgh | a42e534 | 2008-01-29 18:07:43 -0800 | [diff] [blame] | 4510 | char *p, modestr[BOND_MAX_MODENAME_LEN + 1] = { 0, }; |
Jay Vosburgh | ece95f7 | 2008-01-17 16:25:01 -0800 | [diff] [blame] | 4511 | |
Jay Vosburgh | a42e534 | 2008-01-29 18:07:43 -0800 | [diff] [blame] | 4512 | for (p = (char *)buf; *p; p++) |
| 4513 | if (!(isdigit(*p) || isspace(*p))) |
| 4514 | break; |
| 4515 | |
| 4516 | if (*p) |
Jay Vosburgh | ece95f7 | 2008-01-17 16:25:01 -0800 | [diff] [blame] | 4517 | rv = sscanf(buf, "%20s", modestr); |
Jay Vosburgh | a42e534 | 2008-01-29 18:07:43 -0800 | [diff] [blame] | 4518 | else |
Hannes Eder | 54b8732 | 2009-02-14 11:15:49 +0000 | [diff] [blame] | 4519 | rv = sscanf(buf, "%d", &modeint); |
Jay Vosburgh | a42e534 | 2008-01-29 18:07:43 -0800 | [diff] [blame] | 4520 | |
| 4521 | if (!rv) |
| 4522 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4523 | |
| 4524 | for (i = 0; tbl[i].modename; i++) { |
Hannes Eder | 54b8732 | 2009-02-14 11:15:49 +0000 | [diff] [blame] | 4525 | if (modeint == tbl[i].mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4526 | return tbl[i].mode; |
Jay Vosburgh | ece95f7 | 2008-01-17 16:25:01 -0800 | [diff] [blame] | 4527 | if (strcmp(modestr, tbl[i].modename) == 0) |
| 4528 | return tbl[i].mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4529 | } |
| 4530 | |
| 4531 | return -1; |
| 4532 | } |
| 4533 | |
| 4534 | static int bond_check_params(struct bond_params *params) |
| 4535 | { |
Jiri Pirko | a549952 | 2009-09-25 03:28:09 +0000 | [diff] [blame] | 4536 | int arp_validate_value, fail_over_mac_value, primary_reselect_value; |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 4537 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4538 | /* |
| 4539 | * Convert string parameters. |
| 4540 | */ |
| 4541 | if (mode) { |
| 4542 | bond_mode = bond_parse_parm(mode, bond_mode_tbl); |
| 4543 | if (bond_mode == -1) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4544 | pr_err("Error: Invalid bonding mode \"%s\"\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4545 | mode == NULL ? "NULL" : mode); |
| 4546 | return -EINVAL; |
| 4547 | } |
| 4548 | } |
| 4549 | |
Jay Vosburgh | 169a3e6 | 2005-06-26 17:54:11 -0400 | [diff] [blame] | 4550 | if (xmit_hash_policy) { |
| 4551 | if ((bond_mode != BOND_MODE_XOR) && |
| 4552 | (bond_mode != BOND_MODE_8023AD)) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4553 | pr_info("xmit_hash_policy param is irrelevant in mode %s\n", |
Jay Vosburgh | 169a3e6 | 2005-06-26 17:54:11 -0400 | [diff] [blame] | 4554 | bond_mode_name(bond_mode)); |
| 4555 | } else { |
| 4556 | xmit_hashtype = bond_parse_parm(xmit_hash_policy, |
| 4557 | xmit_hashtype_tbl); |
| 4558 | if (xmit_hashtype == -1) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4559 | pr_err("Error: Invalid xmit_hash_policy \"%s\"\n", |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 4560 | xmit_hash_policy == NULL ? "NULL" : |
Jay Vosburgh | 169a3e6 | 2005-06-26 17:54:11 -0400 | [diff] [blame] | 4561 | xmit_hash_policy); |
| 4562 | return -EINVAL; |
| 4563 | } |
| 4564 | } |
| 4565 | } |
| 4566 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4567 | if (lacp_rate) { |
| 4568 | if (bond_mode != BOND_MODE_8023AD) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4569 | pr_info("lacp_rate param is irrelevant in mode %s\n", |
| 4570 | bond_mode_name(bond_mode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4571 | } else { |
| 4572 | lacp_fast = bond_parse_parm(lacp_rate, bond_lacp_tbl); |
| 4573 | if (lacp_fast == -1) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4574 | pr_err("Error: Invalid lacp rate \"%s\"\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4575 | lacp_rate == NULL ? "NULL" : lacp_rate); |
| 4576 | return -EINVAL; |
| 4577 | } |
| 4578 | } |
| 4579 | } |
| 4580 | |
Jay Vosburgh | fd989c8 | 2008-11-04 17:51:16 -0800 | [diff] [blame] | 4581 | if (ad_select) { |
| 4582 | params->ad_select = bond_parse_parm(ad_select, ad_select_tbl); |
| 4583 | if (params->ad_select == -1) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4584 | pr_err("Error: Invalid ad_select \"%s\"\n", |
Jay Vosburgh | fd989c8 | 2008-11-04 17:51:16 -0800 | [diff] [blame] | 4585 | ad_select == NULL ? "NULL" : ad_select); |
| 4586 | return -EINVAL; |
| 4587 | } |
| 4588 | |
| 4589 | if (bond_mode != BOND_MODE_8023AD) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4590 | pr_warning("ad_select param only affects 802.3ad mode\n"); |
Jay Vosburgh | fd989c8 | 2008-11-04 17:51:16 -0800 | [diff] [blame] | 4591 | } |
| 4592 | } else { |
| 4593 | params->ad_select = BOND_AD_STABLE; |
| 4594 | } |
| 4595 | |
Nicolas de Pesloüan | f584130 | 2009-08-28 13:18:34 +0000 | [diff] [blame] | 4596 | if (max_bonds < 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4597 | pr_warning("Warning: max_bonds (%d) not in range %d-%d, so it was reset to BOND_DEFAULT_MAX_BONDS (%d)\n", |
| 4598 | max_bonds, 0, INT_MAX, BOND_DEFAULT_MAX_BONDS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4599 | max_bonds = BOND_DEFAULT_MAX_BONDS; |
| 4600 | } |
| 4601 | |
| 4602 | if (miimon < 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4603 | pr_warning("Warning: miimon module parameter (%d), not in range 0-%d, so it was reset to %d\n", |
| 4604 | miimon, INT_MAX, BOND_LINK_MON_INTERV); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4605 | miimon = BOND_LINK_MON_INTERV; |
| 4606 | } |
| 4607 | |
| 4608 | if (updelay < 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4609 | pr_warning("Warning: updelay module parameter (%d), not in range 0-%d, so it was reset to 0\n", |
| 4610 | updelay, INT_MAX); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4611 | updelay = 0; |
| 4612 | } |
| 4613 | |
| 4614 | if (downdelay < 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4615 | pr_warning("Warning: downdelay module parameter (%d), not in range 0-%d, so it was reset to 0\n", |
| 4616 | downdelay, INT_MAX); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4617 | downdelay = 0; |
| 4618 | } |
| 4619 | |
| 4620 | if ((use_carrier != 0) && (use_carrier != 1)) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4621 | pr_warning("Warning: use_carrier module parameter (%d), not of valid value (0/1), so it was set to 1\n", |
| 4622 | use_carrier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4623 | use_carrier = 1; |
| 4624 | } |
| 4625 | |
Ben Hutchings | ad246c9 | 2011-04-26 15:25:52 +0000 | [diff] [blame] | 4626 | if (num_peer_notif < 0 || num_peer_notif > 255) { |
| 4627 | pr_warning("Warning: num_grat_arp/num_unsol_na (%d) not in range 0-255 so it was reset to 1\n", |
| 4628 | num_peer_notif); |
| 4629 | num_peer_notif = 1; |
| 4630 | } |
| 4631 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4632 | /* reset values for 802.3ad */ |
| 4633 | if (bond_mode == BOND_MODE_8023AD) { |
| 4634 | if (!miimon) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4635 | pr_warning("Warning: miimon must be specified, otherwise bonding will not detect link failure, speed and duplex which are essential for 802.3ad operation\n"); |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 4636 | pr_warning("Forcing miimon to 100msec\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4637 | miimon = 100; |
| 4638 | } |
| 4639 | } |
| 4640 | |
Andy Gospodarek | bb1d912 | 2010-06-02 08:40:18 +0000 | [diff] [blame] | 4641 | if (tx_queues < 1 || tx_queues > 255) { |
| 4642 | pr_warning("Warning: tx_queues (%d) should be between " |
| 4643 | "1 and 255, resetting to %d\n", |
| 4644 | tx_queues, BOND_DEFAULT_TX_QUEUES); |
| 4645 | tx_queues = BOND_DEFAULT_TX_QUEUES; |
| 4646 | } |
| 4647 | |
Andy Gospodarek | ebd8e49 | 2010-06-02 08:39:21 +0000 | [diff] [blame] | 4648 | if ((all_slaves_active != 0) && (all_slaves_active != 1)) { |
| 4649 | pr_warning("Warning: all_slaves_active module parameter (%d), " |
| 4650 | "not of valid value (0/1), so it was set to " |
| 4651 | "0\n", all_slaves_active); |
| 4652 | all_slaves_active = 0; |
| 4653 | } |
| 4654 | |
Flavio Leitner | c2952c3 | 2010-10-05 14:23:59 +0000 | [diff] [blame] | 4655 | if (resend_igmp < 0 || resend_igmp > 255) { |
| 4656 | pr_warning("Warning: resend_igmp (%d) should be between " |
| 4657 | "0 and 255, resetting to %d\n", |
| 4658 | resend_igmp, BOND_DEFAULT_RESEND_IGMP); |
| 4659 | resend_igmp = BOND_DEFAULT_RESEND_IGMP; |
| 4660 | } |
| 4661 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4662 | /* reset values for TLB/ALB */ |
| 4663 | if ((bond_mode == BOND_MODE_TLB) || |
| 4664 | (bond_mode == BOND_MODE_ALB)) { |
| 4665 | if (!miimon) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4666 | pr_warning("Warning: miimon must be specified, otherwise bonding will not detect link failure and link speed which are essential for TLB/ALB load balancing\n"); |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 4667 | pr_warning("Forcing miimon to 100msec\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4668 | miimon = 100; |
| 4669 | } |
| 4670 | } |
| 4671 | |
| 4672 | if (bond_mode == BOND_MODE_ALB) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4673 | pr_notice("In ALB mode you might experience client disconnections upon reconnection of a link if the bonding module updelay parameter (%d msec) is incompatible with the forwarding delay time of the switch\n", |
| 4674 | updelay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4675 | } |
| 4676 | |
| 4677 | if (!miimon) { |
| 4678 | if (updelay || downdelay) { |
| 4679 | /* just warn the user the up/down delay will have |
| 4680 | * no effect since miimon is zero... |
| 4681 | */ |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4682 | pr_warning("Warning: miimon module parameter not set and updelay (%d) or downdelay (%d) module parameter is set; updelay and downdelay have no effect unless miimon is set\n", |
| 4683 | updelay, downdelay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4684 | } |
| 4685 | } else { |
| 4686 | /* don't allow arp monitoring */ |
| 4687 | if (arp_interval) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4688 | pr_warning("Warning: miimon (%d) and arp_interval (%d) can't be used simultaneously, disabling ARP monitoring\n", |
| 4689 | miimon, arp_interval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4690 | arp_interval = 0; |
| 4691 | } |
| 4692 | |
| 4693 | if ((updelay % miimon) != 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4694 | pr_warning("Warning: updelay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n", |
| 4695 | updelay, miimon, |
| 4696 | (updelay / miimon) * miimon); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4697 | } |
| 4698 | |
| 4699 | updelay /= miimon; |
| 4700 | |
| 4701 | if ((downdelay % miimon) != 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4702 | pr_warning("Warning: downdelay (%d) is not a multiple of miimon (%d), downdelay rounded to %d ms\n", |
| 4703 | downdelay, miimon, |
| 4704 | (downdelay / miimon) * miimon); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4705 | } |
| 4706 | |
| 4707 | downdelay /= miimon; |
| 4708 | } |
| 4709 | |
| 4710 | if (arp_interval < 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4711 | pr_warning("Warning: arp_interval module parameter (%d) , not in range 0-%d, so it was reset to %d\n", |
| 4712 | arp_interval, INT_MAX, BOND_LINK_ARP_INTERV); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4713 | arp_interval = BOND_LINK_ARP_INTERV; |
| 4714 | } |
| 4715 | |
| 4716 | for (arp_ip_count = 0; |
| 4717 | (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[arp_ip_count]; |
| 4718 | arp_ip_count++) { |
| 4719 | /* not complete check, but should be good enough to |
| 4720 | catch mistakes */ |
| 4721 | if (!isdigit(arp_ip_target[arp_ip_count][0])) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4722 | pr_warning("Warning: bad arp_ip_target module parameter (%s), ARP monitoring will not be performed\n", |
| 4723 | arp_ip_target[arp_ip_count]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4724 | arp_interval = 0; |
| 4725 | } else { |
Al Viro | d3bb52b | 2007-08-22 20:06:58 -0400 | [diff] [blame] | 4726 | __be32 ip = in_aton(arp_ip_target[arp_ip_count]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4727 | arp_target[arp_ip_count] = ip; |
| 4728 | } |
| 4729 | } |
| 4730 | |
| 4731 | if (arp_interval && !arp_ip_count) { |
| 4732 | /* don't allow arping if no arp_ip_target given... */ |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4733 | pr_warning("Warning: arp_interval module parameter (%d) specified without providing an arp_ip_target parameter, arp_interval was reset to 0\n", |
| 4734 | arp_interval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4735 | arp_interval = 0; |
| 4736 | } |
| 4737 | |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 4738 | if (arp_validate) { |
| 4739 | if (bond_mode != BOND_MODE_ACTIVEBACKUP) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4740 | pr_err("arp_validate only supported in active-backup mode\n"); |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 4741 | return -EINVAL; |
| 4742 | } |
| 4743 | if (!arp_interval) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4744 | pr_err("arp_validate requires arp_interval\n"); |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 4745 | return -EINVAL; |
| 4746 | } |
| 4747 | |
| 4748 | arp_validate_value = bond_parse_parm(arp_validate, |
| 4749 | arp_validate_tbl); |
| 4750 | if (arp_validate_value == -1) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4751 | pr_err("Error: invalid arp_validate \"%s\"\n", |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 4752 | arp_validate == NULL ? "NULL" : arp_validate); |
| 4753 | return -EINVAL; |
| 4754 | } |
| 4755 | } else |
| 4756 | arp_validate_value = 0; |
| 4757 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4758 | if (miimon) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4759 | pr_info("MII link monitoring set to %d ms\n", miimon); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4760 | } else if (arp_interval) { |
| 4761 | int i; |
| 4762 | |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4763 | pr_info("ARP monitoring set to %d ms, validate %s, with %d target(s):", |
| 4764 | arp_interval, |
| 4765 | arp_validate_tbl[arp_validate_value].modename, |
| 4766 | arp_ip_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4767 | |
| 4768 | for (i = 0; i < arp_ip_count; i++) |
Jiri Pirko | e5e2a8f | 2009-08-13 04:11:52 +0000 | [diff] [blame] | 4769 | pr_info(" %s", arp_ip_target[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4770 | |
Jiri Pirko | e5e2a8f | 2009-08-13 04:11:52 +0000 | [diff] [blame] | 4771 | pr_info("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4772 | |
Jay Vosburgh | b8a9787 | 2008-06-13 18:12:04 -0700 | [diff] [blame] | 4773 | } else if (max_bonds) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4774 | /* miimon and arp_interval not set, we need one so things |
| 4775 | * work as expected, see bonding.txt for details |
| 4776 | */ |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4777 | pr_warning("Warning: either miimon or arp_interval and arp_ip_target module parameters must be specified, otherwise bonding will not detect link failures! see bonding.txt for details.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4778 | } |
| 4779 | |
| 4780 | if (primary && !USES_PRIMARY(bond_mode)) { |
| 4781 | /* currently, using a primary only makes sense |
| 4782 | * in active backup, TLB or ALB modes |
| 4783 | */ |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4784 | pr_warning("Warning: %s primary device specified but has no effect in %s mode\n", |
| 4785 | primary, bond_mode_name(bond_mode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4786 | primary = NULL; |
| 4787 | } |
| 4788 | |
Jiri Pirko | a549952 | 2009-09-25 03:28:09 +0000 | [diff] [blame] | 4789 | if (primary && primary_reselect) { |
| 4790 | primary_reselect_value = bond_parse_parm(primary_reselect, |
| 4791 | pri_reselect_tbl); |
| 4792 | if (primary_reselect_value == -1) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4793 | pr_err("Error: Invalid primary_reselect \"%s\"\n", |
Jiri Pirko | a549952 | 2009-09-25 03:28:09 +0000 | [diff] [blame] | 4794 | primary_reselect == |
| 4795 | NULL ? "NULL" : primary_reselect); |
| 4796 | return -EINVAL; |
| 4797 | } |
| 4798 | } else { |
| 4799 | primary_reselect_value = BOND_PRI_RESELECT_ALWAYS; |
| 4800 | } |
| 4801 | |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 4802 | if (fail_over_mac) { |
| 4803 | fail_over_mac_value = bond_parse_parm(fail_over_mac, |
| 4804 | fail_over_mac_tbl); |
| 4805 | if (fail_over_mac_value == -1) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4806 | pr_err("Error: invalid fail_over_mac \"%s\"\n", |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 4807 | arp_validate == NULL ? "NULL" : arp_validate); |
| 4808 | return -EINVAL; |
| 4809 | } |
| 4810 | |
| 4811 | if (bond_mode != BOND_MODE_ACTIVEBACKUP) |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4812 | pr_warning("Warning: fail_over_mac only affects active-backup mode.\n"); |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 4813 | } else { |
| 4814 | fail_over_mac_value = BOND_FOM_NONE; |
| 4815 | } |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 4816 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4817 | /* fill params struct with the proper values */ |
| 4818 | params->mode = bond_mode; |
Jay Vosburgh | 169a3e6 | 2005-06-26 17:54:11 -0400 | [diff] [blame] | 4819 | params->xmit_policy = xmit_hashtype; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4820 | params->miimon = miimon; |
Ben Hutchings | ad246c9 | 2011-04-26 15:25:52 +0000 | [diff] [blame] | 4821 | params->num_peer_notif = num_peer_notif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4822 | params->arp_interval = arp_interval; |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 4823 | params->arp_validate = arp_validate_value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4824 | params->updelay = updelay; |
| 4825 | params->downdelay = downdelay; |
| 4826 | params->use_carrier = use_carrier; |
| 4827 | params->lacp_fast = lacp_fast; |
| 4828 | params->primary[0] = 0; |
Jiri Pirko | a549952 | 2009-09-25 03:28:09 +0000 | [diff] [blame] | 4829 | params->primary_reselect = primary_reselect_value; |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 4830 | params->fail_over_mac = fail_over_mac_value; |
Andy Gospodarek | bb1d912 | 2010-06-02 08:40:18 +0000 | [diff] [blame] | 4831 | params->tx_queues = tx_queues; |
Andy Gospodarek | ebd8e49 | 2010-06-02 08:39:21 +0000 | [diff] [blame] | 4832 | params->all_slaves_active = all_slaves_active; |
Flavio Leitner | c2952c3 | 2010-10-05 14:23:59 +0000 | [diff] [blame] | 4833 | params->resend_igmp = resend_igmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4834 | |
| 4835 | if (primary) { |
| 4836 | strncpy(params->primary, primary, IFNAMSIZ); |
| 4837 | params->primary[IFNAMSIZ - 1] = 0; |
| 4838 | } |
| 4839 | |
| 4840 | memcpy(params->arp_targets, arp_target, sizeof(arp_target)); |
| 4841 | |
| 4842 | return 0; |
| 4843 | } |
| 4844 | |
Peter Zijlstra | 0daa2303 | 2006-11-08 19:51:01 -0800 | [diff] [blame] | 4845 | static struct lock_class_key bonding_netdev_xmit_lock_key; |
David S. Miller | cf508b1 | 2008-07-22 14:16:42 -0700 | [diff] [blame] | 4846 | static struct lock_class_key bonding_netdev_addr_lock_key; |
Peter Zijlstra | 0daa2303 | 2006-11-08 19:51:01 -0800 | [diff] [blame] | 4847 | |
David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 4848 | static void bond_set_lockdep_class_one(struct net_device *dev, |
| 4849 | struct netdev_queue *txq, |
| 4850 | void *_unused) |
David S. Miller | c773e84 | 2008-07-08 23:13:53 -0700 | [diff] [blame] | 4851 | { |
| 4852 | lockdep_set_class(&txq->_xmit_lock, |
| 4853 | &bonding_netdev_xmit_lock_key); |
| 4854 | } |
| 4855 | |
| 4856 | static void bond_set_lockdep_class(struct net_device *dev) |
| 4857 | { |
David S. Miller | cf508b1 | 2008-07-22 14:16:42 -0700 | [diff] [blame] | 4858 | lockdep_set_class(&dev->addr_list_lock, |
| 4859 | &bonding_netdev_addr_lock_key); |
David S. Miller | e8a0464 | 2008-07-17 00:34:19 -0700 | [diff] [blame] | 4860 | netdev_for_each_tx_queue(dev, bond_set_lockdep_class_one, NULL); |
David S. Miller | c773e84 | 2008-07-08 23:13:53 -0700 | [diff] [blame] | 4861 | } |
| 4862 | |
Stephen Hemminger | 181470f | 2009-06-12 19:02:52 +0000 | [diff] [blame] | 4863 | /* |
| 4864 | * Called from registration process |
| 4865 | */ |
| 4866 | static int bond_init(struct net_device *bond_dev) |
| 4867 | { |
| 4868 | struct bonding *bond = netdev_priv(bond_dev); |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 4869 | struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id); |
Stephen Hemminger | 181470f | 2009-06-12 19:02:52 +0000 | [diff] [blame] | 4870 | |
| 4871 | pr_debug("Begin bond_init for %s\n", bond_dev->name); |
| 4872 | |
| 4873 | bond->wq = create_singlethread_workqueue(bond_dev->name); |
| 4874 | if (!bond->wq) |
| 4875 | return -ENOMEM; |
| 4876 | |
| 4877 | bond_set_lockdep_class(bond_dev); |
| 4878 | |
Stephen Hemminger | 181470f | 2009-06-12 19:02:52 +0000 | [diff] [blame] | 4879 | bond_create_proc_entry(bond); |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 4880 | list_add_tail(&bond->bond_list, &bn->dev_list); |
Stephen Hemminger | 181470f | 2009-06-12 19:02:52 +0000 | [diff] [blame] | 4881 | |
Eric W. Biederman | 6151b3d | 2009-10-29 14:18:22 +0000 | [diff] [blame] | 4882 | bond_prepare_sysfs_group(bond); |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 4883 | |
Taku Izumi | f073c7c | 2010-12-09 15:17:13 +0000 | [diff] [blame] | 4884 | bond_debug_register(bond); |
| 4885 | |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 4886 | __hw_addr_init(&bond->mc_list); |
Stephen Hemminger | 181470f | 2009-06-12 19:02:52 +0000 | [diff] [blame] | 4887 | return 0; |
| 4888 | } |
| 4889 | |
Eric W. Biederman | 88ead97 | 2009-10-29 14:18:25 +0000 | [diff] [blame] | 4890 | static int bond_validate(struct nlattr *tb[], struct nlattr *data[]) |
| 4891 | { |
| 4892 | if (tb[IFLA_ADDRESS]) { |
| 4893 | if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) |
| 4894 | return -EINVAL; |
| 4895 | if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) |
| 4896 | return -EADDRNOTAVAIL; |
| 4897 | } |
| 4898 | return 0; |
| 4899 | } |
| 4900 | |
| 4901 | static struct rtnl_link_ops bond_link_ops __read_mostly = { |
| 4902 | .kind = "bond", |
Eric W. Biederman | 6639104 | 2009-10-29 23:58:54 +0000 | [diff] [blame] | 4903 | .priv_size = sizeof(struct bonding), |
Eric W. Biederman | 88ead97 | 2009-10-29 14:18:25 +0000 | [diff] [blame] | 4904 | .setup = bond_setup, |
| 4905 | .validate = bond_validate, |
| 4906 | }; |
| 4907 | |
Mitch Williams | dfe6039 | 2005-11-09 10:36:04 -0800 | [diff] [blame] | 4908 | /* Create a new bond based on the specified name and bonding parameters. |
Jay Vosburgh | e4b91c4 | 2007-01-19 18:15:31 -0800 | [diff] [blame] | 4909 | * If name is NULL, obtain a suitable "bond%d" name for us. |
Mitch Williams | dfe6039 | 2005-11-09 10:36:04 -0800 | [diff] [blame] | 4910 | * Caller must NOT hold rtnl_lock; we need to release it here before we |
| 4911 | * set up our sysfs entries. |
| 4912 | */ |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 4913 | int bond_create(struct net *net, const char *name) |
Mitch Williams | dfe6039 | 2005-11-09 10:36:04 -0800 | [diff] [blame] | 4914 | { |
| 4915 | struct net_device *bond_dev; |
| 4916 | int res; |
| 4917 | |
| 4918 | rtnl_lock(); |
Jay Vosburgh | 027ea04 | 2008-01-17 16:25:02 -0800 | [diff] [blame] | 4919 | |
Jiri Pirko | 1c5cae8 | 2011-04-30 01:21:32 +0000 | [diff] [blame^] | 4920 | bond_dev = alloc_netdev_mq(sizeof(struct bonding), |
| 4921 | name ? name : "bond%d", |
| 4922 | bond_setup, tx_queues); |
Mitch Williams | dfe6039 | 2005-11-09 10:36:04 -0800 | [diff] [blame] | 4923 | if (!bond_dev) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 4924 | pr_err("%s: eek! can't alloc netdev!\n", name); |
Amerigo Wang | 9e2e61f | 2010-03-31 21:30:52 +0000 | [diff] [blame] | 4925 | rtnl_unlock(); |
| 4926 | return -ENOMEM; |
Mitch Williams | dfe6039 | 2005-11-09 10:36:04 -0800 | [diff] [blame] | 4927 | } |
| 4928 | |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 4929 | dev_net_set(bond_dev, net); |
Eric W. Biederman | 88ead97 | 2009-10-29 14:18:25 +0000 | [diff] [blame] | 4930 | bond_dev->rtnl_link_ops = &bond_link_ops; |
| 4931 | |
Mitch Williams | dfe6039 | 2005-11-09 10:36:04 -0800 | [diff] [blame] | 4932 | res = register_netdevice(bond_dev); |
Peter Zijlstra | 0daa2303 | 2006-11-08 19:51:01 -0800 | [diff] [blame] | 4933 | |
Phil Oester | e826eaf | 2011-03-14 06:22:05 +0000 | [diff] [blame] | 4934 | netif_carrier_off(bond_dev); |
| 4935 | |
Mitch Williams | dfe6039 | 2005-11-09 10:36:04 -0800 | [diff] [blame] | 4936 | rtnl_unlock(); |
Amerigo Wang | 9e2e61f | 2010-03-31 21:30:52 +0000 | [diff] [blame] | 4937 | if (res < 0) |
| 4938 | bond_destructor(bond_dev); |
Mitch Williams | dfe6039 | 2005-11-09 10:36:04 -0800 | [diff] [blame] | 4939 | return res; |
| 4940 | } |
| 4941 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 4942 | static int __net_init bond_net_init(struct net *net) |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 4943 | { |
Eric W. Biederman | 1544974 | 2009-11-29 15:46:04 +0000 | [diff] [blame] | 4944 | struct bond_net *bn = net_generic(net, bond_net_id); |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 4945 | |
| 4946 | bn->net = net; |
| 4947 | INIT_LIST_HEAD(&bn->dev_list); |
| 4948 | |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 4949 | bond_create_proc_dir(bn); |
Eric W. Biederman | 1544974 | 2009-11-29 15:46:04 +0000 | [diff] [blame] | 4950 | |
| 4951 | return 0; |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 4952 | } |
| 4953 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 4954 | static void __net_exit bond_net_exit(struct net *net) |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 4955 | { |
Eric W. Biederman | 1544974 | 2009-11-29 15:46:04 +0000 | [diff] [blame] | 4956 | struct bond_net *bn = net_generic(net, bond_net_id); |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 4957 | |
| 4958 | bond_destroy_proc_dir(bn); |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 4959 | } |
| 4960 | |
| 4961 | static struct pernet_operations bond_net_ops = { |
| 4962 | .init = bond_net_init, |
| 4963 | .exit = bond_net_exit, |
Eric W. Biederman | 1544974 | 2009-11-29 15:46:04 +0000 | [diff] [blame] | 4964 | .id = &bond_net_id, |
| 4965 | .size = sizeof(struct bond_net), |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 4966 | }; |
| 4967 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4968 | static int __init bonding_init(void) |
| 4969 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4970 | int i; |
| 4971 | int res; |
| 4972 | |
Amerigo Wang | bd33acc | 2011-03-06 21:58:46 +0000 | [diff] [blame] | 4973 | pr_info("%s", bond_version); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4974 | |
Mitch Williams | dfe6039 | 2005-11-09 10:36:04 -0800 | [diff] [blame] | 4975 | res = bond_check_params(&bonding_defaults); |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 4976 | if (res) |
Mitch Williams | dfe6039 | 2005-11-09 10:36:04 -0800 | [diff] [blame] | 4977 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4978 | |
Eric W. Biederman | 1544974 | 2009-11-29 15:46:04 +0000 | [diff] [blame] | 4979 | res = register_pernet_subsys(&bond_net_ops); |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 4980 | if (res) |
| 4981 | goto out; |
Jay Vosburgh | 027ea04 | 2008-01-17 16:25:02 -0800 | [diff] [blame] | 4982 | |
Eric W. Biederman | 88ead97 | 2009-10-29 14:18:25 +0000 | [diff] [blame] | 4983 | res = rtnl_link_register(&bond_link_ops); |
| 4984 | if (res) |
Eric W. Biederman | 6639104 | 2009-10-29 23:58:54 +0000 | [diff] [blame] | 4985 | goto err_link; |
Eric W. Biederman | 88ead97 | 2009-10-29 14:18:25 +0000 | [diff] [blame] | 4986 | |
Taku Izumi | f073c7c | 2010-12-09 15:17:13 +0000 | [diff] [blame] | 4987 | bond_create_debugfs(); |
| 4988 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4989 | for (i = 0; i < max_bonds; i++) { |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 4990 | res = bond_create(&init_net, NULL); |
Mitch Williams | dfe6039 | 2005-11-09 10:36:04 -0800 | [diff] [blame] | 4991 | if (res) |
| 4992 | goto err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4993 | } |
| 4994 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 4995 | res = bond_create_sysfs(); |
| 4996 | if (res) |
| 4997 | goto err; |
| 4998 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4999 | register_netdevice_notifier(&bond_netdev_notifier); |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 5000 | register_inetaddr_notifier(&bond_inetaddr_notifier); |
Mitch Williams | dfe6039 | 2005-11-09 10:36:04 -0800 | [diff] [blame] | 5001 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5002 | return res; |
Eric W. Biederman | 88ead97 | 2009-10-29 14:18:25 +0000 | [diff] [blame] | 5003 | err: |
| 5004 | rtnl_link_unregister(&bond_link_ops); |
Eric W. Biederman | 6639104 | 2009-10-29 23:58:54 +0000 | [diff] [blame] | 5005 | err_link: |
Eric W. Biederman | 1544974 | 2009-11-29 15:46:04 +0000 | [diff] [blame] | 5006 | unregister_pernet_subsys(&bond_net_ops); |
Eric W. Biederman | 88ead97 | 2009-10-29 14:18:25 +0000 | [diff] [blame] | 5007 | goto out; |
Mitch Williams | dfe6039 | 2005-11-09 10:36:04 -0800 | [diff] [blame] | 5008 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5009 | } |
| 5010 | |
| 5011 | static void __exit bonding_exit(void) |
| 5012 | { |
| 5013 | unregister_netdevice_notifier(&bond_netdev_notifier); |
Jay Vosburgh | c3ade5c | 2005-06-26 17:52:20 -0400 | [diff] [blame] | 5014 | unregister_inetaddr_notifier(&bond_inetaddr_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5015 | |
Pavel Emelyanov | ae68c39 | 2008-05-02 17:49:39 -0700 | [diff] [blame] | 5016 | bond_destroy_sysfs(); |
Taku Izumi | f073c7c | 2010-12-09 15:17:13 +0000 | [diff] [blame] | 5017 | bond_destroy_debugfs(); |
Pavel Emelyanov | ae68c39 | 2008-05-02 17:49:39 -0700 | [diff] [blame] | 5018 | |
Eric W. Biederman | 88ead97 | 2009-10-29 14:18:25 +0000 | [diff] [blame] | 5019 | rtnl_link_unregister(&bond_link_ops); |
Eric W. Biederman | 1544974 | 2009-11-29 15:46:04 +0000 | [diff] [blame] | 5020 | unregister_pernet_subsys(&bond_net_ops); |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 5021 | |
| 5022 | #ifdef CONFIG_NET_POLL_CONTROLLER |
Neil Horman | fb4fa76 | 2010-12-06 09:05:50 +0000 | [diff] [blame] | 5023 | /* |
| 5024 | * Make sure we don't have an imbalance on our netpoll blocking |
| 5025 | */ |
| 5026 | WARN_ON(atomic_read(&netpoll_block_tx)); |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 5027 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5028 | } |
| 5029 | |
| 5030 | module_init(bonding_init); |
| 5031 | module_exit(bonding_exit); |
| 5032 | MODULE_LICENSE("GPL"); |
| 5033 | MODULE_VERSION(DRV_VERSION); |
| 5034 | MODULE_DESCRIPTION(DRV_DESCRIPTION ", v" DRV_VERSION); |
| 5035 | MODULE_AUTHOR("Thomas Davis, tadavis@lbl.gov and many others"); |
Eric W. Biederman | 88ead97 | 2009-10-29 14:18:25 +0000 | [diff] [blame] | 5036 | MODULE_ALIAS_RTNL_LINK("bond"); |