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