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