Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright(c) 2004-2005 Intel Corporation. All rights reserved. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify it |
| 5 | * under the terms of the GNU General Public License as published by the |
| 6 | * Free Software Foundation; either version 2 of the License, or |
| 7 | * (at your option) any later version. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, but |
| 10 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
| 11 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | * for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License along |
| 15 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 16 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 17 | * |
| 18 | * The full GNU General Public License is included in this distribution in the |
| 19 | * file called LICENSE. |
| 20 | * |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 21 | */ |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 22 | |
| 23 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 24 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 25 | #include <linux/kernel.h> |
| 26 | #include <linux/module.h> |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 27 | #include <linux/device.h> |
Alexey Dobriyan | d43c36d | 2009-10-07 17:09:06 +0400 | [diff] [blame] | 28 | #include <linux/sched.h> |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 29 | #include <linux/fs.h> |
| 30 | #include <linux/types.h> |
| 31 | #include <linux/string.h> |
| 32 | #include <linux/netdevice.h> |
| 33 | #include <linux/inetdevice.h> |
| 34 | #include <linux/in.h> |
| 35 | #include <linux/sysfs.h> |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 36 | #include <linux/ctype.h> |
| 37 | #include <linux/inet.h> |
| 38 | #include <linux/rtnetlink.h> |
Stephen Hemminger | 5c5129b | 2009-06-12 19:02:51 +0000 | [diff] [blame] | 39 | #include <linux/etherdevice.h> |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 40 | #include <net/net_namespace.h> |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 41 | #include <net/netns/generic.h> |
| 42 | #include <linux/nsproxy.h> |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 43 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 44 | #include "bonding.h" |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 45 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 46 | #define to_dev(obj) container_of(obj, struct device, kobj) |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 47 | #define to_bond(cd) ((struct bonding *)(netdev_priv(to_net_dev(cd)))) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 48 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 49 | /* |
| 50 | * "show" function for the bond_masters attribute. |
| 51 | * The class parameter is ignored. |
| 52 | */ |
Andi Kleen | 28812fe | 2010-01-05 12:48:07 +0100 | [diff] [blame] | 53 | static ssize_t bonding_show_bonds(struct class *cls, |
| 54 | struct class_attribute *attr, |
| 55 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 56 | { |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 57 | struct bond_net *bn = |
| 58 | container_of(attr, struct bond_net, class_attr_bonding_masters); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 59 | int res = 0; |
| 60 | struct bonding *bond; |
| 61 | |
Stephen Hemminger | 7e08384 | 2009-06-12 19:02:46 +0000 | [diff] [blame] | 62 | rtnl_lock(); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 63 | |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 64 | list_for_each_entry(bond, &bn->dev_list, bond_list) { |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 65 | if (res > (PAGE_SIZE - IFNAMSIZ)) { |
| 66 | /* not enough space for another interface name */ |
| 67 | if ((PAGE_SIZE - res) > 10) |
| 68 | res = PAGE_SIZE - 10; |
Wagner Ferenc | b884366 | 2007-12-06 23:40:30 -0800 | [diff] [blame] | 69 | res += sprintf(buf + res, "++more++ "); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 70 | break; |
| 71 | } |
Wagner Ferenc | b884366 | 2007-12-06 23:40:30 -0800 | [diff] [blame] | 72 | res += sprintf(buf + res, "%s ", bond->dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 73 | } |
Wagner Ferenc | 1dcdcd6 | 2007-12-06 23:40:31 -0800 | [diff] [blame] | 74 | if (res) |
| 75 | buf[res-1] = '\n'; /* eat the leftover space */ |
Stephen Hemminger | 7e08384 | 2009-06-12 19:02:46 +0000 | [diff] [blame] | 76 | |
| 77 | rtnl_unlock(); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 78 | return res; |
| 79 | } |
| 80 | |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 81 | static struct net_device *bond_get_by_name(struct bond_net *bn, const char *ifname) |
Stephen Hemminger | 373500d | 2009-06-12 19:02:50 +0000 | [diff] [blame] | 82 | { |
| 83 | struct bonding *bond; |
| 84 | |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 85 | list_for_each_entry(bond, &bn->dev_list, bond_list) { |
Stephen Hemminger | 373500d | 2009-06-12 19:02:50 +0000 | [diff] [blame] | 86 | if (strncmp(bond->dev->name, ifname, IFNAMSIZ) == 0) |
| 87 | return bond->dev; |
| 88 | } |
| 89 | return NULL; |
| 90 | } |
| 91 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 92 | /* |
| 93 | * "store" function for the bond_masters attribute. This is what |
| 94 | * creates and deletes entire bonds. |
| 95 | * |
| 96 | * The class parameter is ignored. |
| 97 | * |
| 98 | */ |
| 99 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 100 | static ssize_t bonding_store_bonds(struct class *cls, |
Andi Kleen | 28812fe | 2010-01-05 12:48:07 +0100 | [diff] [blame] | 101 | struct class_attribute *attr, |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 102 | const char *buffer, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 103 | { |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 104 | struct bond_net *bn = |
| 105 | container_of(attr, struct bond_net, class_attr_bonding_masters); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 106 | char command[IFNAMSIZ + 1] = {0, }; |
| 107 | char *ifname; |
Jay Vosburgh | 027ea04 | 2008-01-17 16:25:02 -0800 | [diff] [blame] | 108 | int rv, res = count; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 109 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 110 | sscanf(buffer, "%16s", command); /* IFNAMSIZ*/ |
| 111 | ifname = command + 1; |
| 112 | if ((strlen(command) <= 1) || |
| 113 | !dev_valid_name(ifname)) |
| 114 | goto err_no_cmd; |
| 115 | |
| 116 | if (command[0] == '+') { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 117 | pr_info("%s is being created...\n", ifname); |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 118 | rv = bond_create(bn->net, ifname); |
Jay Vosburgh | 027ea04 | 2008-01-17 16:25:02 -0800 | [diff] [blame] | 119 | if (rv) { |
Phil Oester | 5f86cad1 | 2011-03-14 06:22:06 +0000 | [diff] [blame] | 120 | if (rv == -EEXIST) |
| 121 | pr_info("%s already exists.\n", ifname); |
| 122 | else |
| 123 | pr_info("%s creation failed.\n", ifname); |
Jay Vosburgh | 027ea04 | 2008-01-17 16:25:02 -0800 | [diff] [blame] | 124 | res = rv; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 125 | } |
Stephen Hemminger | 373500d | 2009-06-12 19:02:50 +0000 | [diff] [blame] | 126 | } else if (command[0] == '-') { |
| 127 | struct net_device *bond_dev; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 128 | |
Jay Vosburgh | 027ea04 | 2008-01-17 16:25:02 -0800 | [diff] [blame] | 129 | rtnl_lock(); |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 130 | bond_dev = bond_get_by_name(bn, ifname); |
Stephen Hemminger | 373500d | 2009-06-12 19:02:50 +0000 | [diff] [blame] | 131 | if (bond_dev) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 132 | pr_info("%s is being deleted...\n", ifname); |
Stephen Hemminger | 373500d | 2009-06-12 19:02:50 +0000 | [diff] [blame] | 133 | unregister_netdevice(bond_dev); |
| 134 | } else { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 135 | pr_err("unable to delete non-existent %s\n", ifname); |
Stephen Hemminger | 373500d | 2009-06-12 19:02:50 +0000 | [diff] [blame] | 136 | res = -ENODEV; |
| 137 | } |
| 138 | rtnl_unlock(); |
| 139 | } else |
| 140 | goto err_no_cmd; |
Jay Vosburgh | 027ea04 | 2008-01-17 16:25:02 -0800 | [diff] [blame] | 141 | |
Stephen Hemminger | 373500d | 2009-06-12 19:02:50 +0000 | [diff] [blame] | 142 | /* Always return either count or an error. If you return 0, you'll |
| 143 | * get called forever, which is bad. |
| 144 | */ |
| 145 | return res; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 146 | |
| 147 | err_no_cmd: |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 148 | pr_err("no command found in bonding_masters. Use +ifname or -ifname.\n"); |
Jay Vosburgh | c4ebc66 | 2008-05-02 17:49:38 -0700 | [diff] [blame] | 149 | return -EPERM; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 150 | } |
Stephen Hemminger | 373500d | 2009-06-12 19:02:50 +0000 | [diff] [blame] | 151 | |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 152 | static const void *bonding_namespace(struct class *cls, |
| 153 | const struct class_attribute *attr) |
| 154 | { |
| 155 | const struct bond_net *bn = |
| 156 | container_of(attr, struct bond_net, class_attr_bonding_masters); |
| 157 | return bn->net; |
| 158 | } |
| 159 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 160 | /* class attribute for bond_masters file. This ends up in /sys/class/net */ |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 161 | static const struct class_attribute class_attr_bonding_masters = { |
| 162 | .attr = { |
| 163 | .name = "bonding_masters", |
| 164 | .mode = S_IWUSR | S_IRUGO, |
| 165 | }, |
| 166 | .show = bonding_show_bonds, |
| 167 | .store = bonding_store_bonds, |
| 168 | .namespace = bonding_namespace, |
| 169 | }; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 170 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 171 | int bond_create_slave_symlinks(struct net_device *master, |
| 172 | struct net_device *slave) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 173 | { |
| 174 | char linkname[IFNAMSIZ+7]; |
| 175 | int ret = 0; |
| 176 | |
| 177 | /* first, create a link from the slave back to the master */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 178 | ret = sysfs_create_link(&(slave->dev.kobj), &(master->dev.kobj), |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 179 | "master"); |
| 180 | if (ret) |
| 181 | return ret; |
| 182 | /* next, create a link from the master to the slave */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 183 | sprintf(linkname, "slave_%s", slave->name); |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 184 | ret = sysfs_create_link(&(master->dev.kobj), &(slave->dev.kobj), |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 185 | linkname); |
Veaceslav Falico | 9fe16b7 | 2013-03-26 17:43:28 +0100 | [diff] [blame] | 186 | |
| 187 | /* free the master link created earlier in case of error */ |
| 188 | if (ret) |
| 189 | sysfs_remove_link(&(slave->dev.kobj), "master"); |
| 190 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 191 | return ret; |
| 192 | |
| 193 | } |
| 194 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 195 | void bond_destroy_slave_symlinks(struct net_device *master, |
| 196 | struct net_device *slave) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 197 | { |
| 198 | char linkname[IFNAMSIZ+7]; |
| 199 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 200 | sysfs_remove_link(&(slave->dev.kobj), "master"); |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 201 | sprintf(linkname, "slave_%s", slave->name); |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 202 | sysfs_remove_link(&(master->dev.kobj), linkname); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | |
| 206 | /* |
| 207 | * Show the slaves in the current bond. |
| 208 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 209 | static ssize_t bonding_show_slaves(struct device *d, |
| 210 | struct device_attribute *attr, char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 211 | { |
| 212 | struct slave *slave; |
| 213 | int i, res = 0; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 214 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 215 | |
Jay Vosburgh | 6603a6f | 2007-10-17 17:37:50 -0700 | [diff] [blame] | 216 | read_lock(&bond->lock); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 217 | bond_for_each_slave(bond, slave, i) { |
| 218 | if (res > (PAGE_SIZE - IFNAMSIZ)) { |
| 219 | /* not enough space for another interface name */ |
| 220 | if ((PAGE_SIZE - res) > 10) |
| 221 | res = PAGE_SIZE - 10; |
Wagner Ferenc | 7bd4650 | 2007-12-06 23:40:28 -0800 | [diff] [blame] | 222 | res += sprintf(buf + res, "++more++ "); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 223 | break; |
| 224 | } |
| 225 | res += sprintf(buf + res, "%s ", slave->dev->name); |
| 226 | } |
Jay Vosburgh | 6603a6f | 2007-10-17 17:37:50 -0700 | [diff] [blame] | 227 | read_unlock(&bond->lock); |
Wagner Ferenc | 1dcdcd6 | 2007-12-06 23:40:31 -0800 | [diff] [blame] | 228 | if (res) |
| 229 | buf[res-1] = '\n'; /* eat the leftover space */ |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 230 | return res; |
| 231 | } |
| 232 | |
| 233 | /* |
| 234 | * Set the slaves in the current bond. The bond interface must be |
| 235 | * up for this to succeed. |
Jiri Pirko | f9f3545 | 2010-05-18 05:46:39 +0000 | [diff] [blame] | 236 | * This is supposed to be only thin wrapper for bond_enslave and bond_release. |
| 237 | * All hard work should be done there. |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 238 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 239 | static ssize_t bonding_store_slaves(struct device *d, |
| 240 | struct device_attribute *attr, |
| 241 | const char *buffer, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 242 | { |
| 243 | char command[IFNAMSIZ + 1] = { 0, }; |
| 244 | char *ifname; |
Jiri Pirko | f9f3545 | 2010-05-18 05:46:39 +0000 | [diff] [blame] | 245 | int res, ret = count; |
| 246 | struct net_device *dev; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 247 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 248 | |
Eric W. Biederman | 496a60c | 2009-05-13 17:02:50 +0000 | [diff] [blame] | 249 | if (!rtnl_trylock()) |
| 250 | return restart_syscall(); |
Jay Vosburgh | 027ea04 | 2008-01-17 16:25:02 -0800 | [diff] [blame] | 251 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 252 | sscanf(buffer, "%16s", command); /* IFNAMSIZ*/ |
| 253 | ifname = command + 1; |
| 254 | if ((strlen(command) <= 1) || |
| 255 | !dev_valid_name(ifname)) |
| 256 | goto err_no_cmd; |
| 257 | |
Jiri Pirko | f9f3545 | 2010-05-18 05:46:39 +0000 | [diff] [blame] | 258 | dev = __dev_get_by_name(dev_net(bond->dev), ifname); |
| 259 | if (!dev) { |
| 260 | pr_info("%s: Interface %s does not exist!\n", |
| 261 | bond->dev->name, ifname); |
| 262 | ret = -ENODEV; |
| 263 | goto out; |
| 264 | } |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 265 | |
Jiri Pirko | f9f3545 | 2010-05-18 05:46:39 +0000 | [diff] [blame] | 266 | switch (command[0]) { |
| 267 | case '+': |
| 268 | pr_info("%s: Adding slave %s.\n", bond->dev->name, dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 269 | res = bond_enslave(bond->dev, dev); |
Jiri Pirko | f9f3545 | 2010-05-18 05:46:39 +0000 | [diff] [blame] | 270 | break; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 271 | |
Jiri Pirko | f9f3545 | 2010-05-18 05:46:39 +0000 | [diff] [blame] | 272 | case '-': |
| 273 | pr_info("%s: Removing slave %s.\n", bond->dev->name, dev->name); |
| 274 | res = bond_release(bond->dev, dev); |
| 275 | break; |
| 276 | |
| 277 | default: |
| 278 | goto err_no_cmd; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 279 | } |
| 280 | |
Jiri Pirko | f9f3545 | 2010-05-18 05:46:39 +0000 | [diff] [blame] | 281 | if (res) |
| 282 | ret = res; |
| 283 | goto out; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 284 | |
| 285 | err_no_cmd: |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 286 | pr_err("no command found in slaves file for bond %s. Use +ifname or -ifname.\n", |
| 287 | bond->dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 288 | ret = -EPERM; |
| 289 | |
| 290 | out: |
Jay Vosburgh | 027ea04 | 2008-01-17 16:25:02 -0800 | [diff] [blame] | 291 | rtnl_unlock(); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 292 | return ret; |
| 293 | } |
| 294 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 295 | static DEVICE_ATTR(slaves, S_IRUGO | S_IWUSR, bonding_show_slaves, |
| 296 | bonding_store_slaves); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 297 | |
| 298 | /* |
| 299 | * Show and set the bonding mode. The bond interface must be down to |
| 300 | * change the mode. |
| 301 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 302 | static ssize_t bonding_show_mode(struct device *d, |
| 303 | struct device_attribute *attr, char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 304 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 305 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 306 | |
| 307 | return sprintf(buf, "%s %d\n", |
| 308 | bond_mode_tbl[bond->params.mode].modename, |
Wagner Ferenc | 7bd4650 | 2007-12-06 23:40:28 -0800 | [diff] [blame] | 309 | bond->params.mode); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 310 | } |
| 311 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 312 | static ssize_t bonding_store_mode(struct device *d, |
| 313 | struct device_attribute *attr, |
| 314 | const char *buf, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 315 | { |
| 316 | int new_value, ret = count; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 317 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 318 | |
nikolay@redhat.com | ea6836d | 2013-05-18 01:18:28 +0000 | [diff] [blame] | 319 | if (!rtnl_trylock()) |
| 320 | return restart_syscall(); |
| 321 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 322 | if (bond->dev->flags & IFF_UP) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 323 | pr_err("unable to update mode of %s because interface is up.\n", |
| 324 | bond->dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 325 | ret = -EPERM; |
| 326 | goto out; |
| 327 | } |
| 328 | |
Veaceslav Falico | 4a8bb7e | 2011-11-15 06:44:42 +0000 | [diff] [blame] | 329 | if (bond->slave_cnt > 0) { |
| 330 | pr_err("unable to update mode of %s because it has slaves.\n", |
| 331 | bond->dev->name); |
| 332 | ret = -EPERM; |
| 333 | goto out; |
| 334 | } |
| 335 | |
Jay Vosburgh | ece95f7 | 2008-01-17 16:25:01 -0800 | [diff] [blame] | 336 | new_value = bond_parse_parm(buf, bond_mode_tbl); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 337 | if (new_value < 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 338 | pr_err("%s: Ignoring invalid mode value %.*s.\n", |
| 339 | bond->dev->name, (int)strlen(buf) - 1, buf); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 340 | ret = -EINVAL; |
| 341 | goto out; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 342 | } |
Andy Gospodarek | c5cb002 | 2010-07-28 15:13:56 +0000 | [diff] [blame] | 343 | if ((new_value == BOND_MODE_ALB || |
| 344 | new_value == BOND_MODE_TLB) && |
| 345 | bond->params.arp_interval) { |
| 346 | pr_err("%s: %s mode is incompatible with arp monitoring.\n", |
| 347 | bond->dev->name, bond_mode_tbl[new_value].modename); |
| 348 | ret = -EINVAL; |
| 349 | goto out; |
| 350 | } |
Andy Gospodarek | c5cb002 | 2010-07-28 15:13:56 +0000 | [diff] [blame] | 351 | |
| 352 | bond->params.mode = new_value; |
| 353 | bond_set_mode_ops(bond, bond->params.mode); |
| 354 | pr_info("%s: setting mode to %s (%d).\n", |
| 355 | bond->dev->name, bond_mode_tbl[new_value].modename, |
| 356 | new_value); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 357 | out: |
nikolay@redhat.com | ea6836d | 2013-05-18 01:18:28 +0000 | [diff] [blame] | 358 | rtnl_unlock(); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 359 | return ret; |
| 360 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 361 | static DEVICE_ATTR(mode, S_IRUGO | S_IWUSR, |
| 362 | bonding_show_mode, bonding_store_mode); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 363 | |
| 364 | /* |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 365 | * Show and set the bonding transmit hash method. |
| 366 | * The bond interface must be down to change the xmit hash policy. |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 367 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 368 | static ssize_t bonding_show_xmit_hash(struct device *d, |
| 369 | struct device_attribute *attr, |
| 370 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 371 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 372 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 373 | |
Wagner Ferenc | 8e4b932 | 2007-12-06 23:40:32 -0800 | [diff] [blame] | 374 | return sprintf(buf, "%s %d\n", |
| 375 | xmit_hashtype_tbl[bond->params.xmit_policy].modename, |
| 376 | bond->params.xmit_policy); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 377 | } |
| 378 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 379 | static ssize_t bonding_store_xmit_hash(struct device *d, |
| 380 | struct device_attribute *attr, |
| 381 | const char *buf, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 382 | { |
| 383 | int new_value, ret = count; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 384 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 385 | |
| 386 | if (bond->dev->flags & IFF_UP) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 387 | pr_err("%s: Interface is up. Unable to update xmit policy.\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 388 | bond->dev->name); |
| 389 | ret = -EPERM; |
| 390 | goto out; |
| 391 | } |
| 392 | |
Jay Vosburgh | ece95f7 | 2008-01-17 16:25:01 -0800 | [diff] [blame] | 393 | new_value = bond_parse_parm(buf, xmit_hashtype_tbl); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 394 | if (new_value < 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 395 | pr_err("%s: Ignoring invalid xmit hash policy value %.*s.\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 396 | bond->dev->name, |
| 397 | (int)strlen(buf) - 1, buf); |
| 398 | ret = -EINVAL; |
| 399 | goto out; |
| 400 | } else { |
| 401 | bond->params.xmit_policy = new_value; |
| 402 | bond_set_mode_ops(bond, bond->params.mode); |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 403 | pr_info("%s: setting xmit hash policy to %s (%d).\n", |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 404 | bond->dev->name, |
| 405 | xmit_hashtype_tbl[new_value].modename, new_value); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 406 | } |
| 407 | out: |
| 408 | return ret; |
| 409 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 410 | static DEVICE_ATTR(xmit_hash_policy, S_IRUGO | S_IWUSR, |
| 411 | bonding_show_xmit_hash, bonding_store_xmit_hash); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 412 | |
| 413 | /* |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 414 | * Show and set arp_validate. |
| 415 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 416 | static ssize_t bonding_show_arp_validate(struct device *d, |
| 417 | struct device_attribute *attr, |
| 418 | char *buf) |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 419 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 420 | struct bonding *bond = to_bond(d); |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 421 | |
| 422 | return sprintf(buf, "%s %d\n", |
| 423 | arp_validate_tbl[bond->params.arp_validate].modename, |
Wagner Ferenc | 7bd4650 | 2007-12-06 23:40:28 -0800 | [diff] [blame] | 424 | bond->params.arp_validate); |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 425 | } |
| 426 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 427 | static ssize_t bonding_store_arp_validate(struct device *d, |
| 428 | struct device_attribute *attr, |
| 429 | const char *buf, size_t count) |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 430 | { |
| 431 | int new_value; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 432 | struct bonding *bond = to_bond(d); |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 433 | |
Jay Vosburgh | ece95f7 | 2008-01-17 16:25:01 -0800 | [diff] [blame] | 434 | new_value = bond_parse_parm(buf, arp_validate_tbl); |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 435 | if (new_value < 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 436 | pr_err("%s: Ignoring invalid arp_validate value %s\n", |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 437 | bond->dev->name, buf); |
| 438 | return -EINVAL; |
| 439 | } |
| 440 | if (new_value && (bond->params.mode != BOND_MODE_ACTIVEBACKUP)) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 441 | pr_err("%s: arp_validate only supported in active-backup mode.\n", |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 442 | bond->dev->name); |
| 443 | return -EINVAL; |
| 444 | } |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 445 | pr_info("%s: setting arp_validate to %s (%d).\n", |
| 446 | bond->dev->name, arp_validate_tbl[new_value].modename, |
| 447 | new_value); |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 448 | |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 449 | bond->params.arp_validate = new_value; |
| 450 | |
| 451 | return count; |
| 452 | } |
| 453 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 454 | static DEVICE_ATTR(arp_validate, S_IRUGO | S_IWUSR, bonding_show_arp_validate, |
| 455 | bonding_store_arp_validate); |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 456 | |
| 457 | /* |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 458 | * Show and store fail_over_mac. User only allowed to change the |
| 459 | * value when there are no slaves. |
| 460 | */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 461 | static ssize_t bonding_show_fail_over_mac(struct device *d, |
| 462 | struct device_attribute *attr, |
| 463 | char *buf) |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 464 | { |
| 465 | struct bonding *bond = to_bond(d); |
| 466 | |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 467 | return sprintf(buf, "%s %d\n", |
| 468 | fail_over_mac_tbl[bond->params.fail_over_mac].modename, |
| 469 | bond->params.fail_over_mac); |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 470 | } |
| 471 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 472 | static ssize_t bonding_store_fail_over_mac(struct device *d, |
| 473 | struct device_attribute *attr, |
| 474 | const char *buf, size_t count) |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 475 | { |
| 476 | int new_value; |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 477 | struct bonding *bond = to_bond(d); |
| 478 | |
| 479 | if (bond->slave_cnt != 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 480 | pr_err("%s: Can't alter fail_over_mac with slaves in bond.\n", |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 481 | bond->dev->name); |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 482 | return -EPERM; |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 483 | } |
| 484 | |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 485 | new_value = bond_parse_parm(buf, fail_over_mac_tbl); |
| 486 | if (new_value < 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 487 | pr_err("%s: Ignoring invalid fail_over_mac value %s.\n", |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 488 | bond->dev->name, buf); |
| 489 | return -EINVAL; |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 490 | } |
| 491 | |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 492 | bond->params.fail_over_mac = new_value; |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 493 | pr_info("%s: Setting fail_over_mac to %s (%d).\n", |
| 494 | bond->dev->name, fail_over_mac_tbl[new_value].modename, |
| 495 | new_value); |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 496 | |
| 497 | return count; |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 498 | } |
| 499 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 500 | static DEVICE_ATTR(fail_over_mac, S_IRUGO | S_IWUSR, |
| 501 | bonding_show_fail_over_mac, bonding_store_fail_over_mac); |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 502 | |
| 503 | /* |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 504 | * Show and set the arp timer interval. There are two tricky bits |
| 505 | * here. First, if ARP monitoring is activated, then we must disable |
| 506 | * MII monitoring. Second, if the ARP timer isn't running, we must |
| 507 | * start it. |
| 508 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 509 | static ssize_t bonding_show_arp_interval(struct device *d, |
| 510 | struct device_attribute *attr, |
| 511 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 512 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 513 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 514 | |
Wagner Ferenc | 7bd4650 | 2007-12-06 23:40:28 -0800 | [diff] [blame] | 515 | return sprintf(buf, "%d\n", bond->params.arp_interval); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 516 | } |
| 517 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 518 | static ssize_t bonding_store_arp_interval(struct device *d, |
| 519 | struct device_attribute *attr, |
| 520 | const char *buf, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 521 | { |
| 522 | int new_value, ret = count; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 523 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 524 | |
nikolay@redhat.com | fbb0c41 | 2012-11-29 01:31:31 +0000 | [diff] [blame] | 525 | if (!rtnl_trylock()) |
| 526 | return restart_syscall(); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 527 | if (sscanf(buf, "%d", &new_value) != 1) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 528 | pr_err("%s: no arp_interval value specified.\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 529 | bond->dev->name); |
| 530 | ret = -EINVAL; |
| 531 | goto out; |
| 532 | } |
| 533 | if (new_value < 0) { |
nikolay@redhat.com | 1bc7db1 | 2013-03-27 03:32:41 +0000 | [diff] [blame] | 534 | pr_err("%s: Invalid arp_interval value %d not in range 0-%d; rejected.\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 535 | bond->dev->name, new_value, INT_MAX); |
| 536 | ret = -EINVAL; |
| 537 | goto out; |
| 538 | } |
Andy Gospodarek | c5cb002 | 2010-07-28 15:13:56 +0000 | [diff] [blame] | 539 | if (bond->params.mode == BOND_MODE_ALB || |
| 540 | bond->params.mode == BOND_MODE_TLB) { |
| 541 | pr_info("%s: ARP monitoring cannot be used with ALB/TLB. Only MII monitoring is supported on %s.\n", |
| 542 | bond->dev->name, bond->dev->name); |
| 543 | ret = -EINVAL; |
| 544 | goto out; |
| 545 | } |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 546 | pr_info("%s: Setting ARP monitoring interval to %d.\n", |
| 547 | bond->dev->name, new_value); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 548 | bond->params.arp_interval = new_value; |
nikolay@redhat.com | 1bc7db1 | 2013-03-27 03:32:41 +0000 | [diff] [blame] | 549 | if (new_value) { |
| 550 | if (bond->params.miimon) { |
| 551 | pr_info("%s: ARP monitoring cannot be used with MII monitoring. %s Disabling MII monitoring.\n", |
| 552 | bond->dev->name, bond->dev->name); |
| 553 | bond->params.miimon = 0; |
| 554 | } |
| 555 | if (!bond->params.arp_targets[0]) |
| 556 | pr_info("%s: ARP monitoring has been set up, but no ARP targets have been specified.\n", |
| 557 | bond->dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 558 | } |
| 559 | if (bond->dev->flags & IFF_UP) { |
| 560 | /* If the interface is up, we may need to fire off |
| 561 | * the ARP timer. If the interface is down, the |
| 562 | * timer will get fired off when the open function |
| 563 | * is called. |
| 564 | */ |
nikolay@redhat.com | 1bc7db1 | 2013-03-27 03:32:41 +0000 | [diff] [blame] | 565 | if (!new_value) { |
| 566 | cancel_delayed_work_sync(&bond->arp_work); |
| 567 | } else { |
| 568 | cancel_delayed_work_sync(&bond->mii_work); |
| 569 | queue_delayed_work(bond->wq, &bond->arp_work, 0); |
| 570 | } |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 571 | } |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 572 | out: |
nikolay@redhat.com | fbb0c41 | 2012-11-29 01:31:31 +0000 | [diff] [blame] | 573 | rtnl_unlock(); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 574 | return ret; |
| 575 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 576 | static DEVICE_ATTR(arp_interval, S_IRUGO | S_IWUSR, |
| 577 | bonding_show_arp_interval, bonding_store_arp_interval); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 578 | |
| 579 | /* |
| 580 | * Show and set the arp targets. |
| 581 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 582 | static ssize_t bonding_show_arp_targets(struct device *d, |
| 583 | struct device_attribute *attr, |
| 584 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 585 | { |
| 586 | int i, res = 0; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 587 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 588 | |
| 589 | for (i = 0; i < BOND_MAX_ARP_TARGETS; i++) { |
| 590 | if (bond->params.arp_targets[i]) |
Harvey Harrison | 6377943 | 2008-10-31 00:56:00 -0700 | [diff] [blame] | 591 | res += sprintf(buf + res, "%pI4 ", |
| 592 | &bond->params.arp_targets[i]); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 593 | } |
Wagner Ferenc | 1dcdcd6 | 2007-12-06 23:40:31 -0800 | [diff] [blame] | 594 | if (res) |
| 595 | buf[res-1] = '\n'; /* eat the leftover space */ |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 596 | return res; |
| 597 | } |
| 598 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 599 | static ssize_t bonding_store_arp_targets(struct device *d, |
| 600 | struct device_attribute *attr, |
| 601 | const char *buf, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 602 | { |
Al Viro | d3bb52b | 2007-08-22 20:06:58 -0400 | [diff] [blame] | 603 | __be32 newtarget; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 604 | int i = 0, done = 0, ret = count; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 605 | struct bonding *bond = to_bond(d); |
Al Viro | d3bb52b | 2007-08-22 20:06:58 -0400 | [diff] [blame] | 606 | __be32 *targets; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 607 | |
| 608 | targets = bond->params.arp_targets; |
| 609 | newtarget = in_aton(buf + 1); |
| 610 | /* look for adds */ |
| 611 | if (buf[0] == '+') { |
Al Viro | d3bb52b | 2007-08-22 20:06:58 -0400 | [diff] [blame] | 612 | if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 613 | pr_err("%s: invalid ARP target %pI4 specified for addition\n", |
Harvey Harrison | 6377943 | 2008-10-31 00:56:00 -0700 | [diff] [blame] | 614 | bond->dev->name, &newtarget); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 615 | ret = -EINVAL; |
| 616 | goto out; |
| 617 | } |
| 618 | /* look for an empty slot to put the target in, and check for dupes */ |
Brian Haley | 5a31bec | 2009-04-13 00:11:30 -0700 | [diff] [blame] | 619 | for (i = 0; (i < BOND_MAX_ARP_TARGETS) && !done; i++) { |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 620 | if (targets[i] == newtarget) { /* duplicate */ |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 621 | pr_err("%s: ARP target %pI4 is already present\n", |
Harvey Harrison | 6377943 | 2008-10-31 00:56:00 -0700 | [diff] [blame] | 622 | bond->dev->name, &newtarget); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 623 | ret = -EINVAL; |
| 624 | goto out; |
| 625 | } |
Brian Haley | 5a31bec | 2009-04-13 00:11:30 -0700 | [diff] [blame] | 626 | if (targets[i] == 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 627 | pr_info("%s: adding ARP target %pI4.\n", |
| 628 | bond->dev->name, &newtarget); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 629 | done = 1; |
| 630 | targets[i] = newtarget; |
| 631 | } |
| 632 | } |
| 633 | if (!done) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 634 | pr_err("%s: ARP target table is full!\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 635 | bond->dev->name); |
| 636 | ret = -EINVAL; |
| 637 | goto out; |
| 638 | } |
| 639 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 640 | } else if (buf[0] == '-') { |
Al Viro | d3bb52b | 2007-08-22 20:06:58 -0400 | [diff] [blame] | 641 | if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 642 | pr_err("%s: invalid ARP target %pI4 specified for removal\n", |
Harvey Harrison | 6377943 | 2008-10-31 00:56:00 -0700 | [diff] [blame] | 643 | bond->dev->name, &newtarget); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 644 | ret = -EINVAL; |
| 645 | goto out; |
| 646 | } |
| 647 | |
Brian Haley | 5a31bec | 2009-04-13 00:11:30 -0700 | [diff] [blame] | 648 | for (i = 0; (i < BOND_MAX_ARP_TARGETS) && !done; i++) { |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 649 | if (targets[i] == newtarget) { |
Brian Haley | 5a31bec | 2009-04-13 00:11:30 -0700 | [diff] [blame] | 650 | int j; |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 651 | pr_info("%s: removing ARP target %pI4.\n", |
| 652 | bond->dev->name, &newtarget); |
Brian Haley | 5a31bec | 2009-04-13 00:11:30 -0700 | [diff] [blame] | 653 | for (j = i; (j < (BOND_MAX_ARP_TARGETS-1)) && targets[j+1]; j++) |
| 654 | targets[j] = targets[j+1]; |
| 655 | |
| 656 | targets[j] = 0; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 657 | done = 1; |
| 658 | } |
| 659 | } |
| 660 | if (!done) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 661 | pr_info("%s: unable to remove nonexistent ARP target %pI4.\n", |
| 662 | bond->dev->name, &newtarget); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 663 | ret = -EINVAL; |
| 664 | goto out; |
| 665 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 666 | } else { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 667 | pr_err("no command found in arp_ip_targets file for bond %s. Use +<addr> or -<addr>.\n", |
| 668 | bond->dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 669 | ret = -EPERM; |
| 670 | goto out; |
| 671 | } |
| 672 | |
| 673 | out: |
| 674 | return ret; |
| 675 | } |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 676 | static DEVICE_ATTR(arp_ip_target, S_IRUGO | S_IWUSR , bonding_show_arp_targets, bonding_store_arp_targets); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 677 | |
| 678 | /* |
| 679 | * Show and set the up and down delays. These must be multiples of the |
| 680 | * MII monitoring value, and are stored internally as the multiplier. |
| 681 | * Thus, we must translate to MS for the real world. |
| 682 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 683 | static ssize_t bonding_show_downdelay(struct device *d, |
| 684 | struct device_attribute *attr, |
| 685 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 686 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 687 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 688 | |
Wagner Ferenc | 7bd4650 | 2007-12-06 23:40:28 -0800 | [diff] [blame] | 689 | return sprintf(buf, "%d\n", bond->params.downdelay * bond->params.miimon); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 690 | } |
| 691 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 692 | static ssize_t bonding_store_downdelay(struct device *d, |
| 693 | struct device_attribute *attr, |
| 694 | const char *buf, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 695 | { |
| 696 | int new_value, ret = count; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 697 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 698 | |
| 699 | if (!(bond->params.miimon)) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 700 | pr_err("%s: Unable to set down delay as MII monitoring is disabled\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 701 | bond->dev->name); |
| 702 | ret = -EPERM; |
| 703 | goto out; |
| 704 | } |
| 705 | |
| 706 | if (sscanf(buf, "%d", &new_value) != 1) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 707 | pr_err("%s: no down delay value specified.\n", bond->dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 708 | ret = -EINVAL; |
| 709 | goto out; |
| 710 | } |
| 711 | if (new_value < 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 712 | pr_err("%s: Invalid down delay value %d not in range %d-%d; rejected.\n", |
nikolay@redhat.com | 1bc7db1 | 2013-03-27 03:32:41 +0000 | [diff] [blame] | 713 | bond->dev->name, new_value, 0, INT_MAX); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 714 | ret = -EINVAL; |
| 715 | goto out; |
| 716 | } else { |
| 717 | if ((new_value % bond->params.miimon) != 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 718 | pr_warning("%s: Warning: down delay (%d) is not a multiple of miimon (%d), delay rounded to %d ms\n", |
Jiri Pirko | e5e2a8f | 2009-08-13 04:11:52 +0000 | [diff] [blame] | 719 | bond->dev->name, new_value, |
| 720 | bond->params.miimon, |
| 721 | (new_value / bond->params.miimon) * |
| 722 | bond->params.miimon); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 723 | } |
| 724 | bond->params.downdelay = new_value / bond->params.miimon; |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 725 | pr_info("%s: Setting down delay to %d.\n", |
| 726 | bond->dev->name, |
| 727 | bond->params.downdelay * bond->params.miimon); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 728 | |
| 729 | } |
| 730 | |
| 731 | out: |
| 732 | return ret; |
| 733 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 734 | static DEVICE_ATTR(downdelay, S_IRUGO | S_IWUSR, |
| 735 | bonding_show_downdelay, bonding_store_downdelay); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 736 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 737 | static ssize_t bonding_show_updelay(struct device *d, |
| 738 | struct device_attribute *attr, |
| 739 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 740 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 741 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 742 | |
Wagner Ferenc | 7bd4650 | 2007-12-06 23:40:28 -0800 | [diff] [blame] | 743 | return sprintf(buf, "%d\n", bond->params.updelay * bond->params.miimon); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 744 | |
| 745 | } |
| 746 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 747 | static ssize_t bonding_store_updelay(struct device *d, |
| 748 | struct device_attribute *attr, |
| 749 | const char *buf, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 750 | { |
| 751 | int new_value, ret = count; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 752 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 753 | |
| 754 | if (!(bond->params.miimon)) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 755 | pr_err("%s: Unable to set up delay as MII monitoring is disabled\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 756 | bond->dev->name); |
| 757 | ret = -EPERM; |
| 758 | goto out; |
| 759 | } |
| 760 | |
| 761 | if (sscanf(buf, "%d", &new_value) != 1) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 762 | pr_err("%s: no up delay value specified.\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 763 | bond->dev->name); |
| 764 | ret = -EINVAL; |
| 765 | goto out; |
| 766 | } |
| 767 | if (new_value < 0) { |
nikolay@redhat.com | 1bc7db1 | 2013-03-27 03:32:41 +0000 | [diff] [blame] | 768 | pr_err("%s: Invalid up delay value %d not in range %d-%d; rejected.\n", |
| 769 | bond->dev->name, new_value, 0, INT_MAX); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 770 | ret = -EINVAL; |
| 771 | goto out; |
| 772 | } else { |
| 773 | if ((new_value % bond->params.miimon) != 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 774 | pr_warning("%s: Warning: up delay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n", |
Jiri Pirko | e5e2a8f | 2009-08-13 04:11:52 +0000 | [diff] [blame] | 775 | bond->dev->name, new_value, |
| 776 | bond->params.miimon, |
| 777 | (new_value / bond->params.miimon) * |
| 778 | bond->params.miimon); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 779 | } |
| 780 | bond->params.updelay = new_value / bond->params.miimon; |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 781 | pr_info("%s: Setting up delay to %d.\n", |
| 782 | bond->dev->name, |
| 783 | bond->params.updelay * bond->params.miimon); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 784 | } |
| 785 | |
| 786 | out: |
| 787 | return ret; |
| 788 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 789 | static DEVICE_ATTR(updelay, S_IRUGO | S_IWUSR, |
| 790 | bonding_show_updelay, bonding_store_updelay); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 791 | |
| 792 | /* |
| 793 | * Show and set the LACP interval. Interface must be down, and the mode |
| 794 | * must be set to 802.3ad mode. |
| 795 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 796 | static ssize_t bonding_show_lacp(struct device *d, |
| 797 | struct device_attribute *attr, |
| 798 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 799 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 800 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 801 | |
| 802 | return sprintf(buf, "%s %d\n", |
| 803 | bond_lacp_tbl[bond->params.lacp_fast].modename, |
Wagner Ferenc | 7bd4650 | 2007-12-06 23:40:28 -0800 | [diff] [blame] | 804 | bond->params.lacp_fast); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 805 | } |
| 806 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 807 | static ssize_t bonding_store_lacp(struct device *d, |
| 808 | struct device_attribute *attr, |
| 809 | const char *buf, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 810 | { |
| 811 | int new_value, ret = count; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 812 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 813 | |
| 814 | if (bond->dev->flags & IFF_UP) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 815 | pr_err("%s: Unable to update LACP rate because interface is up.\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 816 | bond->dev->name); |
| 817 | ret = -EPERM; |
| 818 | goto out; |
| 819 | } |
| 820 | |
| 821 | if (bond->params.mode != BOND_MODE_8023AD) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 822 | pr_err("%s: Unable to update LACP rate because bond is not in 802.3ad mode.\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 823 | bond->dev->name); |
| 824 | ret = -EPERM; |
| 825 | goto out; |
| 826 | } |
| 827 | |
Jay Vosburgh | ece95f7 | 2008-01-17 16:25:01 -0800 | [diff] [blame] | 828 | new_value = bond_parse_parm(buf, bond_lacp_tbl); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 829 | |
| 830 | if ((new_value == 1) || (new_value == 0)) { |
| 831 | bond->params.lacp_fast = new_value; |
Peter Pan(潘卫平) | ba824a8 | 2011-06-08 21:19:01 +0000 | [diff] [blame] | 832 | bond_3ad_update_lacp_rate(bond); |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 833 | pr_info("%s: Setting LACP rate to %s (%d).\n", |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 834 | bond->dev->name, bond_lacp_tbl[new_value].modename, |
| 835 | new_value); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 836 | } else { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 837 | pr_err("%s: Ignoring invalid LACP rate value %.*s.\n", |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 838 | bond->dev->name, (int)strlen(buf) - 1, buf); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 839 | ret = -EINVAL; |
| 840 | } |
| 841 | out: |
| 842 | return ret; |
| 843 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 844 | static DEVICE_ATTR(lacp_rate, S_IRUGO | S_IWUSR, |
| 845 | bonding_show_lacp, bonding_store_lacp); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 846 | |
stephen hemminger | 655f891 | 2011-06-22 09:54:39 +0000 | [diff] [blame] | 847 | static ssize_t bonding_show_min_links(struct device *d, |
| 848 | struct device_attribute *attr, |
| 849 | char *buf) |
| 850 | { |
| 851 | struct bonding *bond = to_bond(d); |
| 852 | |
| 853 | return sprintf(buf, "%d\n", bond->params.min_links); |
| 854 | } |
| 855 | |
| 856 | static ssize_t bonding_store_min_links(struct device *d, |
| 857 | struct device_attribute *attr, |
| 858 | const char *buf, size_t count) |
| 859 | { |
| 860 | struct bonding *bond = to_bond(d); |
| 861 | int ret; |
| 862 | unsigned int new_value; |
| 863 | |
| 864 | ret = kstrtouint(buf, 0, &new_value); |
| 865 | if (ret < 0) { |
| 866 | pr_err("%s: Ignoring invalid min links value %s.\n", |
| 867 | bond->dev->name, buf); |
| 868 | return ret; |
| 869 | } |
| 870 | |
| 871 | pr_info("%s: Setting min links value to %u\n", |
| 872 | bond->dev->name, new_value); |
| 873 | bond->params.min_links = new_value; |
| 874 | return count; |
| 875 | } |
| 876 | static DEVICE_ATTR(min_links, S_IRUGO | S_IWUSR, |
| 877 | bonding_show_min_links, bonding_store_min_links); |
| 878 | |
Jay Vosburgh | fd989c8 | 2008-11-04 17:51:16 -0800 | [diff] [blame] | 879 | static ssize_t bonding_show_ad_select(struct device *d, |
| 880 | struct device_attribute *attr, |
| 881 | char *buf) |
| 882 | { |
| 883 | struct bonding *bond = to_bond(d); |
| 884 | |
| 885 | return sprintf(buf, "%s %d\n", |
| 886 | ad_select_tbl[bond->params.ad_select].modename, |
| 887 | bond->params.ad_select); |
| 888 | } |
| 889 | |
| 890 | |
| 891 | static ssize_t bonding_store_ad_select(struct device *d, |
| 892 | struct device_attribute *attr, |
| 893 | const char *buf, size_t count) |
| 894 | { |
| 895 | int new_value, ret = count; |
| 896 | struct bonding *bond = to_bond(d); |
| 897 | |
| 898 | if (bond->dev->flags & IFF_UP) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 899 | pr_err("%s: Unable to update ad_select because interface is up.\n", |
| 900 | bond->dev->name); |
Jay Vosburgh | fd989c8 | 2008-11-04 17:51:16 -0800 | [diff] [blame] | 901 | ret = -EPERM; |
| 902 | goto out; |
| 903 | } |
| 904 | |
| 905 | new_value = bond_parse_parm(buf, ad_select_tbl); |
| 906 | |
| 907 | if (new_value != -1) { |
| 908 | bond->params.ad_select = new_value; |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 909 | pr_info("%s: Setting ad_select to %s (%d).\n", |
| 910 | bond->dev->name, ad_select_tbl[new_value].modename, |
| 911 | new_value); |
Jay Vosburgh | fd989c8 | 2008-11-04 17:51:16 -0800 | [diff] [blame] | 912 | } else { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 913 | pr_err("%s: Ignoring invalid ad_select value %.*s.\n", |
Jay Vosburgh | fd989c8 | 2008-11-04 17:51:16 -0800 | [diff] [blame] | 914 | bond->dev->name, (int)strlen(buf) - 1, buf); |
| 915 | ret = -EINVAL; |
| 916 | } |
| 917 | out: |
| 918 | return ret; |
| 919 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 920 | static DEVICE_ATTR(ad_select, S_IRUGO | S_IWUSR, |
| 921 | bonding_show_ad_select, bonding_store_ad_select); |
Jay Vosburgh | fd989c8 | 2008-11-04 17:51:16 -0800 | [diff] [blame] | 922 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 923 | /* |
Ben Hutchings | ad246c9 | 2011-04-26 15:25:52 +0000 | [diff] [blame] | 924 | * Show and set the number of peer notifications to send after a failover event. |
| 925 | */ |
| 926 | static ssize_t bonding_show_num_peer_notif(struct device *d, |
| 927 | struct device_attribute *attr, |
| 928 | char *buf) |
| 929 | { |
| 930 | struct bonding *bond = to_bond(d); |
| 931 | return sprintf(buf, "%d\n", bond->params.num_peer_notif); |
| 932 | } |
| 933 | |
| 934 | static ssize_t bonding_store_num_peer_notif(struct device *d, |
| 935 | struct device_attribute *attr, |
| 936 | const char *buf, size_t count) |
| 937 | { |
| 938 | struct bonding *bond = to_bond(d); |
| 939 | int err = kstrtou8(buf, 10, &bond->params.num_peer_notif); |
| 940 | return err ? err : count; |
| 941 | } |
| 942 | static DEVICE_ATTR(num_grat_arp, S_IRUGO | S_IWUSR, |
| 943 | bonding_show_num_peer_notif, bonding_store_num_peer_notif); |
| 944 | static DEVICE_ATTR(num_unsol_na, S_IRUGO | S_IWUSR, |
| 945 | bonding_show_num_peer_notif, bonding_store_num_peer_notif); |
| 946 | |
| 947 | /* |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 948 | * Show and set the MII monitor interval. There are two tricky bits |
| 949 | * here. First, if MII monitoring is activated, then we must disable |
| 950 | * ARP monitoring. Second, if the timer isn't running, we must |
| 951 | * start it. |
| 952 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 953 | static ssize_t bonding_show_miimon(struct device *d, |
| 954 | struct device_attribute *attr, |
| 955 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 956 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 957 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 958 | |
Wagner Ferenc | 7bd4650 | 2007-12-06 23:40:28 -0800 | [diff] [blame] | 959 | return sprintf(buf, "%d\n", bond->params.miimon); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 960 | } |
| 961 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 962 | static ssize_t bonding_store_miimon(struct device *d, |
| 963 | struct device_attribute *attr, |
| 964 | const char *buf, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 965 | { |
| 966 | int new_value, ret = count; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 967 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 968 | |
nikolay@redhat.com | fbb0c41 | 2012-11-29 01:31:31 +0000 | [diff] [blame] | 969 | if (!rtnl_trylock()) |
| 970 | return restart_syscall(); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 971 | if (sscanf(buf, "%d", &new_value) != 1) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 972 | pr_err("%s: no miimon value specified.\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 973 | bond->dev->name); |
| 974 | ret = -EINVAL; |
| 975 | goto out; |
| 976 | } |
| 977 | if (new_value < 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 978 | pr_err("%s: Invalid miimon value %d not in range %d-%d; rejected.\n", |
nikolay@redhat.com | 1bc7db1 | 2013-03-27 03:32:41 +0000 | [diff] [blame] | 979 | bond->dev->name, new_value, 0, INT_MAX); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 980 | ret = -EINVAL; |
| 981 | goto out; |
nikolay@redhat.com | 1bc7db1 | 2013-03-27 03:32:41 +0000 | [diff] [blame] | 982 | } |
| 983 | pr_info("%s: Setting MII monitoring interval to %d.\n", |
| 984 | bond->dev->name, new_value); |
| 985 | bond->params.miimon = new_value; |
| 986 | if (bond->params.updelay) |
| 987 | pr_info("%s: Note: Updating updelay (to %d) since it is a multiple of the miimon value.\n", |
| 988 | bond->dev->name, |
| 989 | bond->params.updelay * bond->params.miimon); |
| 990 | if (bond->params.downdelay) |
| 991 | pr_info("%s: Note: Updating downdelay (to %d) since it is a multiple of the miimon value.\n", |
| 992 | bond->dev->name, |
| 993 | bond->params.downdelay * bond->params.miimon); |
| 994 | if (new_value && bond->params.arp_interval) { |
| 995 | pr_info("%s: MII monitoring cannot be used with ARP monitoring. Disabling ARP monitoring...\n", |
| 996 | bond->dev->name); |
| 997 | bond->params.arp_interval = 0; |
| 998 | if (bond->params.arp_validate) |
| 999 | bond->params.arp_validate = BOND_ARP_VALIDATE_NONE; |
| 1000 | } |
| 1001 | if (bond->dev->flags & IFF_UP) { |
| 1002 | /* If the interface is up, we may need to fire off |
| 1003 | * the MII timer. If the interface is down, the |
| 1004 | * timer will get fired off when the open function |
| 1005 | * is called. |
| 1006 | */ |
| 1007 | if (!new_value) { |
| 1008 | cancel_delayed_work_sync(&bond->mii_work); |
| 1009 | } else { |
nikolay@redhat.com | fbb0c41 | 2012-11-29 01:31:31 +0000 | [diff] [blame] | 1010 | cancel_delayed_work_sync(&bond->arp_work); |
| 1011 | queue_delayed_work(bond->wq, &bond->mii_work, 0); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1012 | } |
| 1013 | } |
| 1014 | out: |
nikolay@redhat.com | fbb0c41 | 2012-11-29 01:31:31 +0000 | [diff] [blame] | 1015 | rtnl_unlock(); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1016 | return ret; |
| 1017 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1018 | static DEVICE_ATTR(miimon, S_IRUGO | S_IWUSR, |
| 1019 | bonding_show_miimon, bonding_store_miimon); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1020 | |
| 1021 | /* |
| 1022 | * Show and set the primary slave. The store function is much |
| 1023 | * simpler than bonding_store_slaves function because it only needs to |
| 1024 | * handle one interface name. |
| 1025 | * The bond must be a mode that supports a primary for this be |
| 1026 | * set. |
| 1027 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1028 | static ssize_t bonding_show_primary(struct device *d, |
| 1029 | struct device_attribute *attr, |
| 1030 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1031 | { |
| 1032 | int count = 0; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1033 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1034 | |
| 1035 | if (bond->primary_slave) |
Wagner Ferenc | 7bd4650 | 2007-12-06 23:40:28 -0800 | [diff] [blame] | 1036 | count = sprintf(buf, "%s\n", bond->primary_slave->dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1037 | |
| 1038 | return count; |
| 1039 | } |
| 1040 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1041 | static ssize_t bonding_store_primary(struct device *d, |
| 1042 | struct device_attribute *attr, |
| 1043 | const char *buf, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1044 | { |
| 1045 | int i; |
| 1046 | struct slave *slave; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1047 | struct bonding *bond = to_bond(d); |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1048 | char ifname[IFNAMSIZ]; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1049 | |
Eric W. Biederman | 496a60c | 2009-05-13 17:02:50 +0000 | [diff] [blame] | 1050 | if (!rtnl_trylock()) |
| 1051 | return restart_syscall(); |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 1052 | block_netpoll_tx(); |
Jay Vosburgh | e934dd7 | 2008-01-17 16:24:57 -0800 | [diff] [blame] | 1053 | read_lock(&bond->lock); |
| 1054 | write_lock_bh(&bond->curr_slave_lock); |
| 1055 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1056 | if (!USES_PRIMARY(bond->params.mode)) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1057 | pr_info("%s: Unable to set primary slave; %s is in mode %d\n", |
| 1058 | bond->dev->name, bond->dev->name, bond->params.mode); |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1059 | goto out; |
| 1060 | } |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1061 | |
nikolay@redhat.com | eb6e98a | 2012-10-31 04:42:51 +0000 | [diff] [blame] | 1062 | sscanf(buf, "%15s", ifname); /* IFNAMSIZ */ |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1063 | |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1064 | /* check to see if we are clearing primary */ |
| 1065 | if (!strlen(ifname) || buf[0] == '\n') { |
| 1066 | pr_info("%s: Setting primary slave to None.\n", |
| 1067 | bond->dev->name); |
| 1068 | bond->primary_slave = NULL; |
Milos Vyletel | eb492f7 | 2013-01-29 09:59:00 +0000 | [diff] [blame] | 1069 | memset(bond->params.primary, 0, sizeof(bond->params.primary)); |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1070 | bond_select_active_slave(bond); |
| 1071 | goto out; |
| 1072 | } |
| 1073 | |
| 1074 | bond_for_each_slave(bond, slave, i) { |
| 1075 | if (strncmp(slave->dev->name, ifname, IFNAMSIZ) == 0) { |
| 1076 | pr_info("%s: Setting %s as primary slave.\n", |
| 1077 | bond->dev->name, slave->dev->name); |
| 1078 | bond->primary_slave = slave; |
| 1079 | strcpy(bond->params.primary, slave->dev->name); |
| 1080 | bond_select_active_slave(bond); |
| 1081 | goto out; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1082 | } |
| 1083 | } |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1084 | |
Weiping Pan | 8a93664 | 2012-06-10 23:00:20 +0000 | [diff] [blame] | 1085 | strncpy(bond->params.primary, ifname, IFNAMSIZ); |
| 1086 | bond->params.primary[IFNAMSIZ - 1] = 0; |
| 1087 | |
| 1088 | pr_info("%s: Recording %s as primary, " |
| 1089 | "but it has not been enslaved to %s yet.\n", |
| 1090 | bond->dev->name, ifname, bond->dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1091 | out: |
Jay Vosburgh | e934dd7 | 2008-01-17 16:24:57 -0800 | [diff] [blame] | 1092 | write_unlock_bh(&bond->curr_slave_lock); |
| 1093 | read_unlock(&bond->lock); |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 1094 | unblock_netpoll_tx(); |
Jay Vosburgh | 6603a6f | 2007-10-17 17:37:50 -0700 | [diff] [blame] | 1095 | rtnl_unlock(); |
| 1096 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1097 | return count; |
| 1098 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1099 | static DEVICE_ATTR(primary, S_IRUGO | S_IWUSR, |
| 1100 | bonding_show_primary, bonding_store_primary); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1101 | |
| 1102 | /* |
Jiri Pirko | a549952 | 2009-09-25 03:28:09 +0000 | [diff] [blame] | 1103 | * Show and set the primary_reselect flag. |
| 1104 | */ |
| 1105 | static ssize_t bonding_show_primary_reselect(struct device *d, |
| 1106 | struct device_attribute *attr, |
| 1107 | char *buf) |
| 1108 | { |
| 1109 | struct bonding *bond = to_bond(d); |
| 1110 | |
| 1111 | return sprintf(buf, "%s %d\n", |
| 1112 | pri_reselect_tbl[bond->params.primary_reselect].modename, |
| 1113 | bond->params.primary_reselect); |
| 1114 | } |
| 1115 | |
| 1116 | static ssize_t bonding_store_primary_reselect(struct device *d, |
| 1117 | struct device_attribute *attr, |
| 1118 | const char *buf, size_t count) |
| 1119 | { |
| 1120 | int new_value, ret = count; |
| 1121 | struct bonding *bond = to_bond(d); |
| 1122 | |
| 1123 | if (!rtnl_trylock()) |
| 1124 | return restart_syscall(); |
| 1125 | |
| 1126 | new_value = bond_parse_parm(buf, pri_reselect_tbl); |
| 1127 | if (new_value < 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1128 | pr_err("%s: Ignoring invalid primary_reselect value %.*s.\n", |
Jiri Pirko | a549952 | 2009-09-25 03:28:09 +0000 | [diff] [blame] | 1129 | bond->dev->name, |
| 1130 | (int) strlen(buf) - 1, buf); |
| 1131 | ret = -EINVAL; |
| 1132 | goto out; |
| 1133 | } |
| 1134 | |
| 1135 | bond->params.primary_reselect = new_value; |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1136 | pr_info("%s: setting primary_reselect to %s (%d).\n", |
Jiri Pirko | a549952 | 2009-09-25 03:28:09 +0000 | [diff] [blame] | 1137 | bond->dev->name, pri_reselect_tbl[new_value].modename, |
| 1138 | new_value); |
| 1139 | |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 1140 | block_netpoll_tx(); |
Jiri Pirko | a549952 | 2009-09-25 03:28:09 +0000 | [diff] [blame] | 1141 | read_lock(&bond->lock); |
| 1142 | write_lock_bh(&bond->curr_slave_lock); |
| 1143 | bond_select_active_slave(bond); |
| 1144 | write_unlock_bh(&bond->curr_slave_lock); |
| 1145 | read_unlock(&bond->lock); |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 1146 | unblock_netpoll_tx(); |
Jiri Pirko | a549952 | 2009-09-25 03:28:09 +0000 | [diff] [blame] | 1147 | out: |
| 1148 | rtnl_unlock(); |
| 1149 | return ret; |
| 1150 | } |
| 1151 | static DEVICE_ATTR(primary_reselect, S_IRUGO | S_IWUSR, |
| 1152 | bonding_show_primary_reselect, |
| 1153 | bonding_store_primary_reselect); |
| 1154 | |
| 1155 | /* |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1156 | * Show and set the use_carrier flag. |
| 1157 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1158 | static ssize_t bonding_show_carrier(struct device *d, |
| 1159 | struct device_attribute *attr, |
| 1160 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1161 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1162 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1163 | |
Wagner Ferenc | 7bd4650 | 2007-12-06 23:40:28 -0800 | [diff] [blame] | 1164 | return sprintf(buf, "%d\n", bond->params.use_carrier); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1165 | } |
| 1166 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1167 | static ssize_t bonding_store_carrier(struct device *d, |
| 1168 | struct device_attribute *attr, |
| 1169 | const char *buf, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1170 | { |
| 1171 | int new_value, ret = count; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1172 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1173 | |
| 1174 | |
| 1175 | if (sscanf(buf, "%d", &new_value) != 1) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1176 | pr_err("%s: no use_carrier value specified.\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1177 | bond->dev->name); |
| 1178 | ret = -EINVAL; |
| 1179 | goto out; |
| 1180 | } |
| 1181 | if ((new_value == 0) || (new_value == 1)) { |
| 1182 | bond->params.use_carrier = new_value; |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1183 | pr_info("%s: Setting use_carrier to %d.\n", |
| 1184 | bond->dev->name, new_value); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1185 | } else { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1186 | pr_info("%s: Ignoring invalid use_carrier value %d.\n", |
| 1187 | bond->dev->name, new_value); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1188 | } |
| 1189 | out: |
Jiri Pirko | 672bda3 | 2011-01-25 11:03:25 +0000 | [diff] [blame] | 1190 | return ret; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1191 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1192 | static DEVICE_ATTR(use_carrier, S_IRUGO | S_IWUSR, |
| 1193 | bonding_show_carrier, bonding_store_carrier); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1194 | |
| 1195 | |
| 1196 | /* |
| 1197 | * Show and set currently active_slave. |
| 1198 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1199 | static ssize_t bonding_show_active_slave(struct device *d, |
| 1200 | struct device_attribute *attr, |
| 1201 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1202 | { |
| 1203 | struct slave *curr; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1204 | struct bonding *bond = to_bond(d); |
Wagner Ferenc | 16cd016 | 2007-12-06 23:40:29 -0800 | [diff] [blame] | 1205 | int count = 0; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1206 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1207 | read_lock(&bond->curr_slave_lock); |
| 1208 | curr = bond->curr_active_slave; |
| 1209 | read_unlock(&bond->curr_slave_lock); |
| 1210 | |
| 1211 | if (USES_PRIMARY(bond->params.mode) && curr) |
Wagner Ferenc | 7bd4650 | 2007-12-06 23:40:28 -0800 | [diff] [blame] | 1212 | count = sprintf(buf, "%s\n", curr->dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1213 | return count; |
| 1214 | } |
| 1215 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1216 | static ssize_t bonding_store_active_slave(struct device *d, |
| 1217 | struct device_attribute *attr, |
| 1218 | const char *buf, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1219 | { |
| 1220 | int i; |
| 1221 | struct slave *slave; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1222 | struct slave *old_active = NULL; |
| 1223 | struct slave *new_active = NULL; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1224 | struct bonding *bond = to_bond(d); |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1225 | char ifname[IFNAMSIZ]; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1226 | |
Eric W. Biederman | 496a60c | 2009-05-13 17:02:50 +0000 | [diff] [blame] | 1227 | if (!rtnl_trylock()) |
| 1228 | return restart_syscall(); |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 1229 | |
| 1230 | block_netpoll_tx(); |
Jay Vosburgh | e934dd7 | 2008-01-17 16:24:57 -0800 | [diff] [blame] | 1231 | read_lock(&bond->lock); |
| 1232 | write_lock_bh(&bond->curr_slave_lock); |
Jay Vosburgh | 1466a21 | 2007-11-06 13:33:28 -0800 | [diff] [blame] | 1233 | |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1234 | if (!USES_PRIMARY(bond->params.mode)) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1235 | pr_info("%s: Unable to change active slave; %s is in mode %d\n", |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1236 | bond->dev->name, bond->dev->name, bond->params.mode); |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1237 | goto out; |
| 1238 | } |
| 1239 | |
nikolay@redhat.com | c84e159 | 2012-10-31 06:03:52 +0000 | [diff] [blame] | 1240 | sscanf(buf, "%15s", ifname); /* IFNAMSIZ */ |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1241 | |
| 1242 | /* check to see if we are clearing active */ |
| 1243 | if (!strlen(ifname) || buf[0] == '\n') { |
| 1244 | pr_info("%s: Clearing current active slave.\n", |
| 1245 | bond->dev->name); |
| 1246 | bond->curr_active_slave = NULL; |
| 1247 | bond_select_active_slave(bond); |
| 1248 | goto out; |
| 1249 | } |
| 1250 | |
| 1251 | bond_for_each_slave(bond, slave, i) { |
| 1252 | if (strncmp(slave->dev->name, ifname, IFNAMSIZ) == 0) { |
| 1253 | old_active = bond->curr_active_slave; |
| 1254 | new_active = slave; |
| 1255 | if (new_active == old_active) { |
| 1256 | /* do nothing */ |
| 1257 | pr_info("%s: %s is already the current" |
| 1258 | " active slave.\n", |
| 1259 | bond->dev->name, |
| 1260 | slave->dev->name); |
| 1261 | goto out; |
| 1262 | } |
| 1263 | else { |
| 1264 | if ((new_active) && |
| 1265 | (old_active) && |
| 1266 | (new_active->link == BOND_LINK_UP) && |
| 1267 | IS_UP(new_active->dev)) { |
| 1268 | pr_info("%s: Setting %s as active" |
| 1269 | " slave.\n", |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1270 | bond->dev->name, |
| 1271 | slave->dev->name); |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1272 | bond_change_active_slave(bond, |
| 1273 | new_active); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1274 | } |
| 1275 | else { |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1276 | pr_info("%s: Could not set %s as" |
| 1277 | " active slave; either %s is" |
| 1278 | " down or the link is down.\n", |
| 1279 | bond->dev->name, |
| 1280 | slave->dev->name, |
| 1281 | slave->dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1282 | } |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1283 | goto out; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1284 | } |
| 1285 | } |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1286 | } |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1287 | |
| 1288 | pr_info("%s: Unable to set %.*s as active slave.\n", |
| 1289 | bond->dev->name, (int)strlen(buf) - 1, buf); |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1290 | out: |
Jay Vosburgh | e934dd7 | 2008-01-17 16:24:57 -0800 | [diff] [blame] | 1291 | write_unlock_bh(&bond->curr_slave_lock); |
| 1292 | read_unlock(&bond->lock); |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 1293 | unblock_netpoll_tx(); |
| 1294 | |
Jay Vosburgh | 6603a6f | 2007-10-17 17:37:50 -0700 | [diff] [blame] | 1295 | rtnl_unlock(); |
| 1296 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1297 | return count; |
| 1298 | |
| 1299 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1300 | static DEVICE_ATTR(active_slave, S_IRUGO | S_IWUSR, |
| 1301 | bonding_show_active_slave, bonding_store_active_slave); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1302 | |
| 1303 | |
| 1304 | /* |
| 1305 | * Show link status of the bond interface. |
| 1306 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1307 | static ssize_t bonding_show_mii_status(struct device *d, |
| 1308 | struct device_attribute *attr, |
| 1309 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1310 | { |
| 1311 | struct slave *curr; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1312 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1313 | |
| 1314 | read_lock(&bond->curr_slave_lock); |
| 1315 | curr = bond->curr_active_slave; |
| 1316 | read_unlock(&bond->curr_slave_lock); |
| 1317 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1318 | return sprintf(buf, "%s\n", curr ? "up" : "down"); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1319 | } |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1320 | static DEVICE_ATTR(mii_status, S_IRUGO, bonding_show_mii_status, NULL); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1321 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1322 | /* |
| 1323 | * Show current 802.3ad aggregator ID. |
| 1324 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1325 | static ssize_t bonding_show_ad_aggregator(struct device *d, |
| 1326 | struct device_attribute *attr, |
| 1327 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1328 | { |
| 1329 | int count = 0; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1330 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1331 | |
| 1332 | if (bond->params.mode == BOND_MODE_8023AD) { |
| 1333 | struct ad_info ad_info; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1334 | count = sprintf(buf, "%d\n", |
nikolay@redhat.com | 318debd | 2013-05-18 01:18:31 +0000 | [diff] [blame] | 1335 | bond_3ad_get_active_agg_info(bond, &ad_info) |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1336 | ? 0 : ad_info.aggregator_id); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1337 | } |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1338 | |
| 1339 | return count; |
| 1340 | } |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1341 | static DEVICE_ATTR(ad_aggregator, S_IRUGO, bonding_show_ad_aggregator, NULL); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1342 | |
| 1343 | |
| 1344 | /* |
| 1345 | * Show number of active 802.3ad ports. |
| 1346 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1347 | static ssize_t bonding_show_ad_num_ports(struct device *d, |
| 1348 | struct device_attribute *attr, |
| 1349 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1350 | { |
| 1351 | int count = 0; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1352 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1353 | |
| 1354 | if (bond->params.mode == BOND_MODE_8023AD) { |
| 1355 | struct ad_info ad_info; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1356 | count = sprintf(buf, "%d\n", |
nikolay@redhat.com | 318debd | 2013-05-18 01:18:31 +0000 | [diff] [blame] | 1357 | bond_3ad_get_active_agg_info(bond, &ad_info) |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1358 | ? 0 : ad_info.ports); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1359 | } |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1360 | |
| 1361 | return count; |
| 1362 | } |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1363 | static DEVICE_ATTR(ad_num_ports, S_IRUGO, bonding_show_ad_num_ports, NULL); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1364 | |
| 1365 | |
| 1366 | /* |
| 1367 | * Show current 802.3ad actor key. |
| 1368 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1369 | static ssize_t bonding_show_ad_actor_key(struct device *d, |
| 1370 | struct device_attribute *attr, |
| 1371 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1372 | { |
| 1373 | int count = 0; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1374 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1375 | |
| 1376 | if (bond->params.mode == BOND_MODE_8023AD) { |
| 1377 | struct ad_info ad_info; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1378 | count = sprintf(buf, "%d\n", |
nikolay@redhat.com | 318debd | 2013-05-18 01:18:31 +0000 | [diff] [blame] | 1379 | bond_3ad_get_active_agg_info(bond, &ad_info) |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1380 | ? 0 : ad_info.actor_key); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1381 | } |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1382 | |
| 1383 | return count; |
| 1384 | } |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1385 | static DEVICE_ATTR(ad_actor_key, S_IRUGO, bonding_show_ad_actor_key, NULL); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1386 | |
| 1387 | |
| 1388 | /* |
| 1389 | * Show current 802.3ad partner key. |
| 1390 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1391 | static ssize_t bonding_show_ad_partner_key(struct device *d, |
| 1392 | struct device_attribute *attr, |
| 1393 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1394 | { |
| 1395 | int count = 0; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1396 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1397 | |
| 1398 | if (bond->params.mode == BOND_MODE_8023AD) { |
| 1399 | struct ad_info ad_info; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1400 | count = sprintf(buf, "%d\n", |
nikolay@redhat.com | 318debd | 2013-05-18 01:18:31 +0000 | [diff] [blame] | 1401 | bond_3ad_get_active_agg_info(bond, &ad_info) |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1402 | ? 0 : ad_info.partner_key); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1403 | } |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1404 | |
| 1405 | return count; |
| 1406 | } |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1407 | static DEVICE_ATTR(ad_partner_key, S_IRUGO, bonding_show_ad_partner_key, NULL); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1408 | |
| 1409 | |
| 1410 | /* |
| 1411 | * Show current 802.3ad partner mac. |
| 1412 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1413 | static ssize_t bonding_show_ad_partner_mac(struct device *d, |
| 1414 | struct device_attribute *attr, |
| 1415 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1416 | { |
| 1417 | int count = 0; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1418 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1419 | |
| 1420 | if (bond->params.mode == BOND_MODE_8023AD) { |
| 1421 | struct ad_info ad_info; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1422 | if (!bond_3ad_get_active_agg_info(bond, &ad_info)) |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 1423 | count = sprintf(buf, "%pM\n", ad_info.partner_system); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1424 | } |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1425 | |
| 1426 | return count; |
| 1427 | } |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1428 | static DEVICE_ATTR(ad_partner_mac, S_IRUGO, bonding_show_ad_partner_mac, NULL); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1429 | |
Andy Gospodarek | ebd8e49 | 2010-06-02 08:39:21 +0000 | [diff] [blame] | 1430 | /* |
Andy Gospodarek | bb1d912 | 2010-06-02 08:40:18 +0000 | [diff] [blame] | 1431 | * Show the queue_ids of the slaves in the current bond. |
| 1432 | */ |
| 1433 | static ssize_t bonding_show_queue_id(struct device *d, |
| 1434 | struct device_attribute *attr, |
| 1435 | char *buf) |
| 1436 | { |
| 1437 | struct slave *slave; |
| 1438 | int i, res = 0; |
| 1439 | struct bonding *bond = to_bond(d); |
| 1440 | |
| 1441 | if (!rtnl_trylock()) |
| 1442 | return restart_syscall(); |
| 1443 | |
| 1444 | read_lock(&bond->lock); |
| 1445 | bond_for_each_slave(bond, slave, i) { |
Nicolas de Pesloüan | 7923668 | 2010-07-14 18:24:54 -0700 | [diff] [blame] | 1446 | if (res > (PAGE_SIZE - IFNAMSIZ - 6)) { |
| 1447 | /* not enough space for another interface_name:queue_id pair */ |
Andy Gospodarek | bb1d912 | 2010-06-02 08:40:18 +0000 | [diff] [blame] | 1448 | if ((PAGE_SIZE - res) > 10) |
| 1449 | res = PAGE_SIZE - 10; |
| 1450 | res += sprintf(buf + res, "++more++ "); |
| 1451 | break; |
| 1452 | } |
| 1453 | res += sprintf(buf + res, "%s:%d ", |
| 1454 | slave->dev->name, slave->queue_id); |
| 1455 | } |
| 1456 | read_unlock(&bond->lock); |
| 1457 | if (res) |
| 1458 | buf[res-1] = '\n'; /* eat the leftover space */ |
| 1459 | rtnl_unlock(); |
| 1460 | return res; |
| 1461 | } |
| 1462 | |
| 1463 | /* |
| 1464 | * Set the queue_ids of the slaves in the current bond. The bond |
| 1465 | * interface must be enslaved for this to work. |
| 1466 | */ |
| 1467 | static ssize_t bonding_store_queue_id(struct device *d, |
| 1468 | struct device_attribute *attr, |
| 1469 | const char *buffer, size_t count) |
| 1470 | { |
| 1471 | struct slave *slave, *update_slave; |
| 1472 | struct bonding *bond = to_bond(d); |
| 1473 | u16 qid; |
| 1474 | int i, ret = count; |
| 1475 | char *delim; |
| 1476 | struct net_device *sdev = NULL; |
| 1477 | |
| 1478 | if (!rtnl_trylock()) |
| 1479 | return restart_syscall(); |
| 1480 | |
| 1481 | /* delim will point to queue id if successful */ |
| 1482 | delim = strchr(buffer, ':'); |
| 1483 | if (!delim) |
| 1484 | goto err_no_cmd; |
| 1485 | |
| 1486 | /* |
| 1487 | * Terminate string that points to device name and bump it |
| 1488 | * up one, so we can read the queue id there. |
| 1489 | */ |
| 1490 | *delim = '\0'; |
| 1491 | if (sscanf(++delim, "%hd\n", &qid) != 1) |
| 1492 | goto err_no_cmd; |
| 1493 | |
| 1494 | /* Check buffer length, valid ifname and queue id */ |
| 1495 | if (strlen(buffer) > IFNAMSIZ || |
| 1496 | !dev_valid_name(buffer) || |
Jiri Pirko | 8a540ff | 2012-07-20 02:28:50 +0000 | [diff] [blame] | 1497 | qid > bond->dev->real_num_tx_queues) |
Andy Gospodarek | bb1d912 | 2010-06-02 08:40:18 +0000 | [diff] [blame] | 1498 | goto err_no_cmd; |
| 1499 | |
| 1500 | /* Get the pointer to that interface if it exists */ |
| 1501 | sdev = __dev_get_by_name(dev_net(bond->dev), buffer); |
| 1502 | if (!sdev) |
| 1503 | goto err_no_cmd; |
| 1504 | |
| 1505 | read_lock(&bond->lock); |
| 1506 | |
| 1507 | /* Search for thes slave and check for duplicate qids */ |
| 1508 | update_slave = NULL; |
| 1509 | bond_for_each_slave(bond, slave, i) { |
| 1510 | if (sdev == slave->dev) |
| 1511 | /* |
| 1512 | * We don't need to check the matching |
| 1513 | * slave for dups, since we're overwriting it |
| 1514 | */ |
| 1515 | update_slave = slave; |
| 1516 | else if (qid && qid == slave->queue_id) { |
| 1517 | goto err_no_cmd_unlock; |
| 1518 | } |
| 1519 | } |
| 1520 | |
| 1521 | if (!update_slave) |
| 1522 | goto err_no_cmd_unlock; |
| 1523 | |
| 1524 | /* Actually set the qids for the slave */ |
| 1525 | update_slave->queue_id = qid; |
| 1526 | |
| 1527 | read_unlock(&bond->lock); |
| 1528 | out: |
| 1529 | rtnl_unlock(); |
| 1530 | return ret; |
| 1531 | |
| 1532 | err_no_cmd_unlock: |
| 1533 | read_unlock(&bond->lock); |
| 1534 | err_no_cmd: |
| 1535 | pr_info("invalid input for queue_id set for %s.\n", |
| 1536 | bond->dev->name); |
| 1537 | ret = -EPERM; |
| 1538 | goto out; |
| 1539 | } |
| 1540 | |
| 1541 | static DEVICE_ATTR(queue_id, S_IRUGO | S_IWUSR, bonding_show_queue_id, |
| 1542 | bonding_store_queue_id); |
| 1543 | |
| 1544 | |
| 1545 | /* |
Andy Gospodarek | ebd8e49 | 2010-06-02 08:39:21 +0000 | [diff] [blame] | 1546 | * Show and set the all_slaves_active flag. |
| 1547 | */ |
| 1548 | static ssize_t bonding_show_slaves_active(struct device *d, |
| 1549 | struct device_attribute *attr, |
| 1550 | char *buf) |
| 1551 | { |
| 1552 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1553 | |
Andy Gospodarek | ebd8e49 | 2010-06-02 08:39:21 +0000 | [diff] [blame] | 1554 | return sprintf(buf, "%d\n", bond->params.all_slaves_active); |
| 1555 | } |
| 1556 | |
| 1557 | static ssize_t bonding_store_slaves_active(struct device *d, |
| 1558 | struct device_attribute *attr, |
| 1559 | const char *buf, size_t count) |
| 1560 | { |
| 1561 | int i, new_value, ret = count; |
| 1562 | struct bonding *bond = to_bond(d); |
| 1563 | struct slave *slave; |
| 1564 | |
| 1565 | if (sscanf(buf, "%d", &new_value) != 1) { |
| 1566 | pr_err("%s: no all_slaves_active value specified.\n", |
| 1567 | bond->dev->name); |
| 1568 | ret = -EINVAL; |
| 1569 | goto out; |
| 1570 | } |
| 1571 | |
| 1572 | if (new_value == bond->params.all_slaves_active) |
| 1573 | goto out; |
| 1574 | |
| 1575 | if ((new_value == 0) || (new_value == 1)) { |
| 1576 | bond->params.all_slaves_active = new_value; |
| 1577 | } else { |
| 1578 | pr_info("%s: Ignoring invalid all_slaves_active value %d.\n", |
| 1579 | bond->dev->name, new_value); |
| 1580 | ret = -EINVAL; |
| 1581 | goto out; |
| 1582 | } |
| 1583 | |
nikolay@redhat.com | e196c0e | 2012-11-29 01:37:59 +0000 | [diff] [blame] | 1584 | read_lock(&bond->lock); |
Andy Gospodarek | ebd8e49 | 2010-06-02 08:39:21 +0000 | [diff] [blame] | 1585 | bond_for_each_slave(bond, slave, i) { |
Jiri Pirko | e30bc06 | 2011-03-12 03:14:37 +0000 | [diff] [blame] | 1586 | if (!bond_is_active_slave(slave)) { |
Andy Gospodarek | ebd8e49 | 2010-06-02 08:39:21 +0000 | [diff] [blame] | 1587 | if (new_value) |
Jiri Pirko | 2d7011c | 2011-03-16 08:46:43 +0000 | [diff] [blame] | 1588 | slave->inactive = 0; |
Andy Gospodarek | ebd8e49 | 2010-06-02 08:39:21 +0000 | [diff] [blame] | 1589 | else |
Jiri Pirko | 2d7011c | 2011-03-16 08:46:43 +0000 | [diff] [blame] | 1590 | slave->inactive = 1; |
Andy Gospodarek | ebd8e49 | 2010-06-02 08:39:21 +0000 | [diff] [blame] | 1591 | } |
| 1592 | } |
nikolay@redhat.com | e196c0e | 2012-11-29 01:37:59 +0000 | [diff] [blame] | 1593 | read_unlock(&bond->lock); |
Andy Gospodarek | ebd8e49 | 2010-06-02 08:39:21 +0000 | [diff] [blame] | 1594 | out: |
Jiri Pirko | 672bda3 | 2011-01-25 11:03:25 +0000 | [diff] [blame] | 1595 | return ret; |
Andy Gospodarek | ebd8e49 | 2010-06-02 08:39:21 +0000 | [diff] [blame] | 1596 | } |
| 1597 | static DEVICE_ATTR(all_slaves_active, S_IRUGO | S_IWUSR, |
| 1598 | bonding_show_slaves_active, bonding_store_slaves_active); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1599 | |
Flavio Leitner | c2952c3 | 2010-10-05 14:23:59 +0000 | [diff] [blame] | 1600 | /* |
| 1601 | * Show and set the number of IGMP membership reports to send on link failure |
| 1602 | */ |
| 1603 | static ssize_t bonding_show_resend_igmp(struct device *d, |
Flavio Leitner | 94265cf | 2011-05-25 08:38:58 +0000 | [diff] [blame] | 1604 | struct device_attribute *attr, |
| 1605 | char *buf) |
Flavio Leitner | c2952c3 | 2010-10-05 14:23:59 +0000 | [diff] [blame] | 1606 | { |
| 1607 | struct bonding *bond = to_bond(d); |
| 1608 | |
| 1609 | return sprintf(buf, "%d\n", bond->params.resend_igmp); |
| 1610 | } |
| 1611 | |
| 1612 | static ssize_t bonding_store_resend_igmp(struct device *d, |
Flavio Leitner | 94265cf | 2011-05-25 08:38:58 +0000 | [diff] [blame] | 1613 | struct device_attribute *attr, |
| 1614 | const char *buf, size_t count) |
Flavio Leitner | c2952c3 | 2010-10-05 14:23:59 +0000 | [diff] [blame] | 1615 | { |
| 1616 | int new_value, ret = count; |
| 1617 | struct bonding *bond = to_bond(d); |
| 1618 | |
| 1619 | if (sscanf(buf, "%d", &new_value) != 1) { |
| 1620 | pr_err("%s: no resend_igmp value specified.\n", |
| 1621 | bond->dev->name); |
| 1622 | ret = -EINVAL; |
| 1623 | goto out; |
| 1624 | } |
| 1625 | |
Flavio Leitner | 94265cf | 2011-05-25 08:38:58 +0000 | [diff] [blame] | 1626 | if (new_value < 0 || new_value > 255) { |
Flavio Leitner | c2952c3 | 2010-10-05 14:23:59 +0000 | [diff] [blame] | 1627 | pr_err("%s: Invalid resend_igmp value %d not in range 0-255; rejected.\n", |
| 1628 | bond->dev->name, new_value); |
| 1629 | ret = -EINVAL; |
| 1630 | goto out; |
| 1631 | } |
| 1632 | |
| 1633 | pr_info("%s: Setting resend_igmp to %d.\n", |
| 1634 | bond->dev->name, new_value); |
| 1635 | bond->params.resend_igmp = new_value; |
| 1636 | out: |
| 1637 | return ret; |
| 1638 | } |
| 1639 | |
| 1640 | static DEVICE_ATTR(resend_igmp, S_IRUGO | S_IWUSR, |
| 1641 | bonding_show_resend_igmp, bonding_store_resend_igmp); |
| 1642 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1643 | static struct attribute *per_bond_attrs[] = { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1644 | &dev_attr_slaves.attr, |
| 1645 | &dev_attr_mode.attr, |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 1646 | &dev_attr_fail_over_mac.attr, |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1647 | &dev_attr_arp_validate.attr, |
| 1648 | &dev_attr_arp_interval.attr, |
| 1649 | &dev_attr_arp_ip_target.attr, |
| 1650 | &dev_attr_downdelay.attr, |
| 1651 | &dev_attr_updelay.attr, |
| 1652 | &dev_attr_lacp_rate.attr, |
Jay Vosburgh | fd989c8 | 2008-11-04 17:51:16 -0800 | [diff] [blame] | 1653 | &dev_attr_ad_select.attr, |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1654 | &dev_attr_xmit_hash_policy.attr, |
Ben Hutchings | ad246c9 | 2011-04-26 15:25:52 +0000 | [diff] [blame] | 1655 | &dev_attr_num_grat_arp.attr, |
| 1656 | &dev_attr_num_unsol_na.attr, |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1657 | &dev_attr_miimon.attr, |
| 1658 | &dev_attr_primary.attr, |
Jiri Pirko | a549952 | 2009-09-25 03:28:09 +0000 | [diff] [blame] | 1659 | &dev_attr_primary_reselect.attr, |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1660 | &dev_attr_use_carrier.attr, |
| 1661 | &dev_attr_active_slave.attr, |
| 1662 | &dev_attr_mii_status.attr, |
| 1663 | &dev_attr_ad_aggregator.attr, |
| 1664 | &dev_attr_ad_num_ports.attr, |
| 1665 | &dev_attr_ad_actor_key.attr, |
| 1666 | &dev_attr_ad_partner_key.attr, |
| 1667 | &dev_attr_ad_partner_mac.attr, |
Andy Gospodarek | bb1d912 | 2010-06-02 08:40:18 +0000 | [diff] [blame] | 1668 | &dev_attr_queue_id.attr, |
Andy Gospodarek | ebd8e49 | 2010-06-02 08:39:21 +0000 | [diff] [blame] | 1669 | &dev_attr_all_slaves_active.attr, |
Flavio Leitner | c2952c3 | 2010-10-05 14:23:59 +0000 | [diff] [blame] | 1670 | &dev_attr_resend_igmp.attr, |
stephen hemminger | 655f891 | 2011-06-22 09:54:39 +0000 | [diff] [blame] | 1671 | &dev_attr_min_links.attr, |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1672 | NULL, |
| 1673 | }; |
| 1674 | |
| 1675 | static struct attribute_group bonding_group = { |
| 1676 | .name = "bonding", |
| 1677 | .attrs = per_bond_attrs, |
| 1678 | }; |
| 1679 | |
| 1680 | /* |
| 1681 | * Initialize sysfs. This sets up the bonding_masters file in |
| 1682 | * /sys/class/net. |
| 1683 | */ |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 1684 | int bond_create_sysfs(struct bond_net *bn) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1685 | { |
Jay Vosburgh | b8a9787 | 2008-06-13 18:12:04 -0700 | [diff] [blame] | 1686 | int ret; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1687 | |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 1688 | bn->class_attr_bonding_masters = class_attr_bonding_masters; |
Eric W. Biederman | 01718e3 | 2011-10-21 22:43:07 +0000 | [diff] [blame] | 1689 | sysfs_attr_init(&bn->class_attr_bonding_masters.attr); |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 1690 | |
| 1691 | ret = netdev_class_create_file(&bn->class_attr_bonding_masters); |
Jay Vosburgh | 877cbd3 | 2007-01-19 18:15:47 -0800 | [diff] [blame] | 1692 | /* |
| 1693 | * Permit multiple loads of the module by ignoring failures to |
| 1694 | * create the bonding_masters sysfs file. Bonding devices |
| 1695 | * created by second or subsequent loads of the module will |
| 1696 | * not be listed in, or controllable by, bonding_masters, but |
| 1697 | * will have the usual "bonding" sysfs directory. |
| 1698 | * |
| 1699 | * This is done to preserve backwards compatibility for |
| 1700 | * initscripts/sysconfig, which load bonding multiple times to |
| 1701 | * configure multiple bonding devices. |
| 1702 | */ |
| 1703 | if (ret == -EEXIST) { |
Stephen Hemminger | 38d2f38 | 2008-05-14 22:35:04 -0700 | [diff] [blame] | 1704 | /* Is someone being kinky and naming a device bonding_master? */ |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 1705 | if (__dev_get_by_name(bn->net, |
Stephen Hemminger | 38d2f38 | 2008-05-14 22:35:04 -0700 | [diff] [blame] | 1706 | class_attr_bonding_masters.attr.name)) |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1707 | pr_err("network device named %s already exists in sysfs", |
Stephen Hemminger | 38d2f38 | 2008-05-14 22:35:04 -0700 | [diff] [blame] | 1708 | class_attr_bonding_masters.attr.name); |
Stephen Hemminger | 130aa61 | 2009-06-11 05:46:04 -0700 | [diff] [blame] | 1709 | ret = 0; |
Jay Vosburgh | 877cbd3 | 2007-01-19 18:15:47 -0800 | [diff] [blame] | 1710 | } |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1711 | |
| 1712 | return ret; |
| 1713 | |
| 1714 | } |
| 1715 | |
| 1716 | /* |
| 1717 | * Remove /sys/class/net/bonding_masters. |
| 1718 | */ |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 1719 | void bond_destroy_sysfs(struct bond_net *bn) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1720 | { |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 1721 | netdev_class_remove_file(&bn->class_attr_bonding_masters); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1722 | } |
| 1723 | |
| 1724 | /* |
| 1725 | * Initialize sysfs for each bond. This sets up and registers |
| 1726 | * the 'bondctl' directory for each individual bond under /sys/class/net. |
| 1727 | */ |
Eric W. Biederman | 6151b3d | 2009-10-29 14:18:22 +0000 | [diff] [blame] | 1728 | void bond_prepare_sysfs_group(struct bonding *bond) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1729 | { |
Eric W. Biederman | 6151b3d | 2009-10-29 14:18:22 +0000 | [diff] [blame] | 1730 | bond->dev->sysfs_groups[0] = &bonding_group; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1731 | } |
| 1732 | |