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