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