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