blob: 46b150e6289ef4607c8ddbcd2b833ff4dd64cc9b [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Amerigo Wangbd33acc2011-03-06 21:58:46 +00002#include <linux/proc_fs.h>
Jakub Kicinskicc698372020-11-20 14:50:52 -08003#include <linux/ethtool.h>
Paul Gortmakeree40fa02011-05-27 16:14:23 -04004#include <linux/export.h>
Amerigo Wangbd33acc2011-03-06 21:58:46 +00005#include <net/net_namespace.h>
6#include <net/netns/generic.h>
David S. Miller1ef80192014-11-10 13:27:49 -05007#include <net/bonding.h>
Amerigo Wangbd33acc2011-03-06 21:58:46 +00008
Matan Barak73b5a6f22015-04-26 15:55:57 +03009#include "bonding_priv.h"
Amerigo Wangbd33acc2011-03-06 21:58:46 +000010
Amerigo Wangbd33acc2011-03-06 21:58:46 +000011static void *bond_info_seq_start(struct seq_file *seq, loff_t *pos)
12 __acquires(RCU)
Amerigo Wangbd33acc2011-03-06 21:58:46 +000013{
Muchun Song359745d2022-01-21 22:14:23 -080014 struct bonding *bond = pde_data(file_inode(seq->file));
Veaceslav Falico9caff1e72013-09-25 09:20:14 +020015 struct list_head *iter;
Amerigo Wangbd33acc2011-03-06 21:58:46 +000016 struct slave *slave;
Veaceslav Falico9caff1e72013-09-25 09:20:14 +020017 loff_t off = 0;
Amerigo Wangbd33acc2011-03-06 21:58:46 +000018
Amerigo Wangbd33acc2011-03-06 21:58:46 +000019 rcu_read_lock();
Amerigo Wangbd33acc2011-03-06 21:58:46 +000020
21 if (*pos == 0)
22 return SEQ_START_TOKEN;
23
Nikolay Aleksandrove9fe8ef2014-09-09 23:17:01 +020024 bond_for_each_slave_rcu(bond, slave, iter)
Amerigo Wangbd33acc2011-03-06 21:58:46 +000025 if (++off == *pos)
26 return slave;
Amerigo Wangbd33acc2011-03-06 21:58:46 +000027
28 return NULL;
29}
30
31static void *bond_info_seq_next(struct seq_file *seq, void *v, loff_t *pos)
32{
Muchun Song359745d2022-01-21 22:14:23 -080033 struct bonding *bond = pde_data(file_inode(seq->file));
Veaceslav Falicof9650842013-09-27 16:12:04 +020034 struct list_head *iter;
35 struct slave *slave;
36 bool found = false;
Amerigo Wangbd33acc2011-03-06 21:58:46 +000037
38 ++*pos;
39 if (v == SEQ_START_TOKEN)
Nikolay Aleksandrove9fe8ef2014-09-09 23:17:01 +020040 return bond_first_slave_rcu(bond);
Amerigo Wangbd33acc2011-03-06 21:58:46 +000041
Nikolay Aleksandrove9fe8ef2014-09-09 23:17:01 +020042 bond_for_each_slave_rcu(bond, slave, iter) {
Veaceslav Falicof9650842013-09-27 16:12:04 +020043 if (found)
44 return slave;
45 if (slave == v)
46 found = true;
47 }
48
49 return NULL;
Amerigo Wangbd33acc2011-03-06 21:58:46 +000050}
51
52static void bond_info_seq_stop(struct seq_file *seq, void *v)
Amerigo Wangbd33acc2011-03-06 21:58:46 +000053 __releases(RCU)
54{
Amerigo Wangbd33acc2011-03-06 21:58:46 +000055 rcu_read_unlock();
56}
57
58static void bond_info_show_master(struct seq_file *seq)
59{
Muchun Song359745d2022-01-21 22:14:23 -080060 struct bonding *bond = pde_data(file_inode(seq->file));
stephen hemminger28f084c2014-03-06 14:20:17 -080061 const struct bond_opt_value *optval;
Nikolay Aleksandrov059b47e2014-09-09 23:17:00 +020062 struct slave *curr, *primary;
Amerigo Wangbd33acc2011-03-06 21:58:46 +000063 int i;
64
dingtianhong4335d602014-02-21 16:08:53 +080065 curr = rcu_dereference(bond->curr_active_slave);
Amerigo Wangbd33acc2011-03-06 21:58:46 +000066
67 seq_printf(seq, "Bonding Mode: %s",
Veaceslav Falico01844092014-05-15 21:39:55 +020068 bond_mode_name(BOND_MODE(bond)));
Amerigo Wangbd33acc2011-03-06 21:58:46 +000069
Veaceslav Falico01844092014-05-15 21:39:55 +020070 if (BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP &&
Nikolay Aleksandrov1df6b6a2014-01-22 14:53:22 +010071 bond->params.fail_over_mac) {
72 optval = bond_opt_get_val(BOND_OPT_FAIL_OVER_MAC,
73 bond->params.fail_over_mac);
74 seq_printf(seq, " (fail_over_mac %s)", optval->string);
75 }
Amerigo Wangbd33acc2011-03-06 21:58:46 +000076
77 seq_printf(seq, "\n");
78
Mahesh Bandeward7021322014-10-04 17:44:44 -070079 if (bond_mode_uses_xmit_hash(bond)) {
Nikolay Aleksandrova4b32ce2014-01-22 14:53:19 +010080 optval = bond_opt_get_val(BOND_OPT_XMIT_HASH,
81 bond->params.xmit_policy);
Amerigo Wangbd33acc2011-03-06 21:58:46 +000082 seq_printf(seq, "Transmit Hash Policy: %s (%d)\n",
Nikolay Aleksandrova4b32ce2014-01-22 14:53:19 +010083 optval->string, bond->params.xmit_policy);
Amerigo Wangbd33acc2011-03-06 21:58:46 +000084 }
85
Veaceslav Falicoec0865a2014-05-15 21:39:54 +020086 if (bond_uses_primary(bond)) {
Nikolay Aleksandrov059b47e2014-09-09 23:17:00 +020087 primary = rcu_dereference(bond->primary_slave);
Amerigo Wangbd33acc2011-03-06 21:58:46 +000088 seq_printf(seq, "Primary Slave: %s",
Nikolay Aleksandrov059b47e2014-09-09 23:17:00 +020089 primary ? primary->dev->name : "None");
90 if (primary) {
Nikolay Aleksandrov388d3a62014-01-22 14:53:33 +010091 optval = bond_opt_get_val(BOND_OPT_PRIMARY_RESELECT,
92 bond->params.primary_reselect);
Amerigo Wangbd33acc2011-03-06 21:58:46 +000093 seq_printf(seq, " (primary_reselect %s)",
Nikolay Aleksandrov388d3a62014-01-22 14:53:33 +010094 optval->string);
95 }
Amerigo Wangbd33acc2011-03-06 21:58:46 +000096
97 seq_printf(seq, "\nCurrently Active Slave: %s\n",
98 (curr) ? curr->dev->name : "None");
99 }
100
101 seq_printf(seq, "MII Status: %s\n", netif_carrier_ok(bond->dev) ?
102 "up" : "down");
103 seq_printf(seq, "MII Polling Interval (ms): %d\n", bond->params.miimon);
104 seq_printf(seq, "Up Delay (ms): %d\n",
105 bond->params.updelay * bond->params.miimon);
106 seq_printf(seq, "Down Delay (ms): %d\n",
107 bond->params.downdelay * bond->params.miimon);
Vincent Bernat07a4dde2019-07-02 19:43:54 +0200108 seq_printf(seq, "Peer Notification Delay (ms): %d\n",
109 bond->params.peer_notif_delay * bond->params.miimon);
Amerigo Wangbd33acc2011-03-06 21:58:46 +0000110
111
112 /* ARP information */
113 if (bond->params.arp_interval > 0) {
114 int printed = 0;
Yufeng Mo86a5ad02021-05-20 14:18:32 +0800115
Amerigo Wangbd33acc2011-03-06 21:58:46 +0000116 seq_printf(seq, "ARP Polling Interval (ms): %d\n",
117 bond->params.arp_interval);
Hangbin Liu5944b5a2021-11-30 12:29:47 +0800118 seq_printf(seq, "ARP Missed Max: %u\n",
119 bond->params.missed_max);
Amerigo Wangbd33acc2011-03-06 21:58:46 +0000120
121 seq_printf(seq, "ARP IP target/s (n.n.n.n form):");
122
123 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
124 if (!bond->params.arp_targets[i])
125 break;
126 if (printed)
127 seq_printf(seq, ",");
128 seq_printf(seq, " %pI4", &bond->params.arp_targets[i]);
129 printed = 1;
130 }
131 seq_printf(seq, "\n");
132 }
133
Veaceslav Falico01844092014-05-15 21:39:55 +0200134 if (BOND_MODE(bond) == BOND_MODE_8023AD) {
Amerigo Wangbd33acc2011-03-06 21:58:46 +0000135 struct ad_info ad_info;
136
137 seq_puts(seq, "\n802.3ad info\n");
Hangbin Liu3a755cd2021-08-02 11:02:19 +0800138 seq_printf(seq, "LACP active: %s\n",
139 (bond->params.lacp_active) ? "on" : "off");
Amerigo Wangbd33acc2011-03-06 21:58:46 +0000140 seq_printf(seq, "LACP rate: %s\n",
141 (bond->params.lacp_fast) ? "fast" : "slow");
stephen hemminger655f8912011-06-22 09:54:39 +0000142 seq_printf(seq, "Min links: %d\n", bond->params.min_links);
Nikolay Aleksandrov9e5f5ee2014-01-22 14:53:29 +0100143 optval = bond_opt_get_val(BOND_OPT_AD_SELECT,
144 bond->params.ad_select);
Amerigo Wangbd33acc2011-03-06 21:58:46 +0000145 seq_printf(seq, "Aggregator selection policy (ad_select): %s\n",
Nikolay Aleksandrov9e5f5ee2014-01-22 14:53:29 +0100146 optval->string);
Mahesh Bandewar4cd6b472015-06-18 11:30:54 -0700147 if (capable(CAP_NET_ADMIN)) {
148 seq_printf(seq, "System priority: %d\n",
149 BOND_AD_INFO(bond).system.sys_priority);
150 seq_printf(seq, "System MAC address: %pM\n",
151 &BOND_AD_INFO(bond).system.sys_mac_addr);
Amerigo Wangbd33acc2011-03-06 21:58:46 +0000152
Mahesh Bandewar4cd6b472015-06-18 11:30:54 -0700153 if (__bond_3ad_get_active_agg_info(bond, &ad_info)) {
154 seq_printf(seq,
155 "bond %s has no active aggregator\n",
156 bond->dev->name);
157 } else {
158 seq_printf(seq, "Active Aggregator Info:\n");
Amerigo Wangbd33acc2011-03-06 21:58:46 +0000159
Mahesh Bandewar4cd6b472015-06-18 11:30:54 -0700160 seq_printf(seq, "\tAggregator ID: %d\n",
161 ad_info.aggregator_id);
162 seq_printf(seq, "\tNumber of ports: %d\n",
163 ad_info.ports);
164 seq_printf(seq, "\tActor Key: %d\n",
165 ad_info.actor_key);
166 seq_printf(seq, "\tPartner Key: %d\n",
167 ad_info.partner_key);
168 seq_printf(seq, "\tPartner Mac Address: %pM\n",
169 ad_info.partner_system);
170 }
Amerigo Wangbd33acc2011-03-06 21:58:46 +0000171 }
172 }
173}
174
175static void bond_info_show_slave(struct seq_file *seq,
176 const struct slave *slave)
177{
Muchun Song359745d2022-01-21 22:14:23 -0800178 struct bonding *bond = pde_data(file_inode(seq->file));
Amerigo Wangbd33acc2011-03-06 21:58:46 +0000179
180 seq_printf(seq, "\nSlave Interface: %s\n", slave->dev->name);
Amerigo Wangdf2bcc42012-06-14 22:39:27 +0000181 seq_printf(seq, "MII Status: %s\n", bond_slave_link_status(slave->link));
Dan Carpenter589665f2011-11-04 08:21:38 +0000182 if (slave->speed == SPEED_UNKNOWN)
Weiping Pan98f41f62011-10-31 17:20:48 +0000183 seq_printf(seq, "Speed: %s\n", "Unknown");
184 else
185 seq_printf(seq, "Speed: %d Mbps\n", slave->speed);
186
Dan Carpenter589665f2011-11-04 08:21:38 +0000187 if (slave->duplex == DUPLEX_UNKNOWN)
Weiping Pan98f41f62011-10-31 17:20:48 +0000188 seq_printf(seq, "Duplex: %s\n", "Unknown");
189 else
190 seq_printf(seq, "Duplex: %s\n", slave->duplex ? "full" : "half");
191
Amerigo Wangbd33acc2011-03-06 21:58:46 +0000192 seq_printf(seq, "Link Failure Count: %u\n",
193 slave->link_failure_count);
194
Jarod Wilsonfaeeb312017-04-04 17:32:42 -0400195 seq_printf(seq, "Permanent HW addr: %*phC\n",
196 slave->dev->addr_len, slave->perm_hwaddr);
Mahesh Bandewar14c95512015-02-23 17:50:11 -0800197 seq_printf(seq, "Slave queue ID: %d\n", slave->queue_id);
Amerigo Wangbd33acc2011-03-06 21:58:46 +0000198
Veaceslav Falico01844092014-05-15 21:39:55 +0200199 if (BOND_MODE(bond) == BOND_MODE_8023AD) {
Mahesh Bandewar14c95512015-02-23 17:50:11 -0800200 const struct port *port = &SLAVE_AD_INFO(slave)->port;
201 const struct aggregator *agg = port->aggregator;
Amerigo Wangbd33acc2011-03-06 21:58:46 +0000202
Mahesh Bandewar14c95512015-02-23 17:50:11 -0800203 if (agg) {
Amerigo Wangbd33acc2011-03-06 21:58:46 +0000204 seq_printf(seq, "Aggregator ID: %d\n",
205 agg->aggregator_identifier);
Mahesh Bandewar14c95512015-02-23 17:50:11 -0800206 seq_printf(seq, "Actor Churn State: %s\n",
207 bond_3ad_churn_desc(port->sm_churn_actor_state));
208 seq_printf(seq, "Partner Churn State: %s\n",
209 bond_3ad_churn_desc(port->sm_churn_partner_state));
210 seq_printf(seq, "Actor Churned Count: %d\n",
211 port->churn_actor_count);
212 seq_printf(seq, "Partner Churned Count: %d\n",
213 port->churn_partner_count);
214
Mahesh Bandewar4cd6b472015-06-18 11:30:54 -0700215 if (capable(CAP_NET_ADMIN)) {
216 seq_puts(seq, "details actor lacp pdu:\n");
217 seq_printf(seq, " system priority: %d\n",
218 port->actor_system_priority);
219 seq_printf(seq, " system mac address: %pM\n",
220 &port->actor_system);
221 seq_printf(seq, " port key: %d\n",
222 port->actor_oper_port_key);
223 seq_printf(seq, " port priority: %d\n",
224 port->actor_port_priority);
225 seq_printf(seq, " port number: %d\n",
226 port->actor_port_number);
227 seq_printf(seq, " port state: %d\n",
228 port->actor_oper_port_state);
Mahesh Bandewar14c95512015-02-23 17:50:11 -0800229
Mahesh Bandewar4cd6b472015-06-18 11:30:54 -0700230 seq_puts(seq, "details partner lacp pdu:\n");
231 seq_printf(seq, " system priority: %d\n",
232 port->partner_oper.system_priority);
233 seq_printf(seq, " system mac address: %pM\n",
234 &port->partner_oper.system);
235 seq_printf(seq, " oper key: %d\n",
236 port->partner_oper.key);
237 seq_printf(seq, " port priority: %d\n",
238 port->partner_oper.port_priority);
239 seq_printf(seq, " port number: %d\n",
240 port->partner_oper.port_number);
241 seq_printf(seq, " port state: %d\n",
242 port->partner_oper.port_state);
243 }
Mahesh Bandewar14c95512015-02-23 17:50:11 -0800244 } else {
Amerigo Wangbd33acc2011-03-06 21:58:46 +0000245 seq_puts(seq, "Aggregator ID: N/A\n");
Mahesh Bandewar14c95512015-02-23 17:50:11 -0800246 }
Amerigo Wangbd33acc2011-03-06 21:58:46 +0000247 }
Amerigo Wangbd33acc2011-03-06 21:58:46 +0000248}
249
250static int bond_info_seq_show(struct seq_file *seq, void *v)
251{
252 if (v == SEQ_START_TOKEN) {
253 seq_printf(seq, "%s\n", bond_version);
254 bond_info_show_master(seq);
255 } else
256 bond_info_show_slave(seq, v);
257
258 return 0;
259}
260
261static const struct seq_operations bond_info_seq_ops = {
262 .start = bond_info_seq_start,
263 .next = bond_info_seq_next,
264 .stop = bond_info_seq_stop,
265 .show = bond_info_seq_show,
266};
267
Amerigo Wangbd33acc2011-03-06 21:58:46 +0000268void bond_create_proc_entry(struct bonding *bond)
269{
270 struct net_device *bond_dev = bond->dev;
271 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
272
273 if (bn->proc_dir) {
Christoph Hellwig7ceed062018-04-11 11:00:32 +0200274 bond->proc_entry = proc_create_seq_data(bond_dev->name, 0444,
275 bn->proc_dir, &bond_info_seq_ops, bond);
Amerigo Wangbd33acc2011-03-06 21:58:46 +0000276 if (bond->proc_entry == NULL)
Veaceslav Falicoc735ee62014-07-15 19:36:07 +0200277 netdev_warn(bond_dev, "Cannot create /proc/net/%s/%s\n",
278 DRV_NAME, bond_dev->name);
Amerigo Wangbd33acc2011-03-06 21:58:46 +0000279 else
280 memcpy(bond->proc_file_name, bond_dev->name, IFNAMSIZ);
281 }
282}
283
284void bond_remove_proc_entry(struct bonding *bond)
285{
286 struct net_device *bond_dev = bond->dev;
287 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
288
289 if (bn->proc_dir && bond->proc_entry) {
290 remove_proc_entry(bond->proc_file_name, bn->proc_dir);
291 memset(bond->proc_file_name, 0, IFNAMSIZ);
292 bond->proc_entry = NULL;
293 }
294}
295
296/* Create the bonding directory under /proc/net, if doesn't exist yet.
297 * Caller must hold rtnl_lock.
298 */
299void __net_init bond_create_proc_dir(struct bond_net *bn)
300{
301 if (!bn->proc_dir) {
302 bn->proc_dir = proc_mkdir(DRV_NAME, bn->net->proc_net);
303 if (!bn->proc_dir)
Joe Perches90194262014-02-15 16:01:45 -0800304 pr_warn("Warning: Cannot create /proc/net/%s\n",
Joe Perches91565eb2014-02-15 15:57:04 -0800305 DRV_NAME);
Amerigo Wangbd33acc2011-03-06 21:58:46 +0000306 }
307}
308
309/* Destroy the bonding directory under /proc/net, if empty.
310 * Caller must hold rtnl_lock.
311 */
312void __net_exit bond_destroy_proc_dir(struct bond_net *bn)
313{
314 if (bn->proc_dir) {
315 remove_proc_entry(DRV_NAME, bn->net->proc_net);
316 bn->proc_dir = NULL;
317 }
318}