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