blob: cbeb69bca0bba2e1dc879aa9d2fd175596959411 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/*
2 * originally based on the dummy device.
3 *
4 * Copyright 1999, Thomas Davis, tadavis@lbl.gov.
5 * Licensed under the GPL. Based on dummy.c, and eql.c devices.
6 *
7 * bonding.c: an Ethernet Bonding driver
8 *
9 * This is useful to talk to a Cisco EtherChannel compatible equipment:
10 * Cisco 5500
11 * Sun Trunking (Solaris)
12 * Alteon AceDirector Trunks
13 * Linux Bonding
14 * and probably many L2 switches ...
15 *
16 * How it works:
17 * ifconfig bond0 ipaddress netmask up
18 * will setup a network device, with an ip address. No mac address
19 * will be assigned at this time. The hw mac address will come from
20 * the first slave bonded to the channel. All slaves will then use
21 * this hw mac address.
22 *
23 * ifconfig bond0 down
24 * will release all slaves, marking them as down.
25 *
26 * ifenslave bond0 eth0
27 * will attach eth0 to bond0 as a slave. eth0 hw mac address will either
28 * a: be used as initial mac address
29 * b: if a hw mac address already is there, eth0's hw mac address
30 * will then be set from bond0.
31 *
32 */
33
34#include <linux/kernel.h>
35#include <linux/module.h>
36#include <linux/types.h>
37#include <linux/fcntl.h>
38#include <linux/interrupt.h>
39#include <linux/ptrace.h>
40#include <linux/ioport.h>
41#include <linux/in.h>
42#include <net/ip.h>
43#include <linux/ip.h>
Olivier Deprez157378f2022-04-04 15:47:50 +020044#include <linux/icmp.h>
45#include <linux/icmpv6.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000046#include <linux/tcp.h>
47#include <linux/udp.h>
48#include <linux/slab.h>
49#include <linux/string.h>
50#include <linux/init.h>
51#include <linux/timer.h>
52#include <linux/socket.h>
53#include <linux/ctype.h>
54#include <linux/inet.h>
55#include <linux/bitops.h>
56#include <linux/io.h>
57#include <asm/dma.h>
58#include <linux/uaccess.h>
59#include <linux/errno.h>
60#include <linux/netdevice.h>
61#include <linux/inetdevice.h>
62#include <linux/igmp.h>
63#include <linux/etherdevice.h>
64#include <linux/skbuff.h>
65#include <net/sock.h>
66#include <linux/rtnetlink.h>
67#include <linux/smp.h>
68#include <linux/if_ether.h>
69#include <net/arp.h>
70#include <linux/mii.h>
71#include <linux/ethtool.h>
72#include <linux/if_vlan.h>
73#include <linux/if_bonding.h>
74#include <linux/jiffies.h>
75#include <linux/preempt.h>
76#include <net/route.h>
77#include <net/net_namespace.h>
78#include <net/netns/generic.h>
79#include <net/pkt_sched.h>
80#include <linux/rculist.h>
81#include <net/flow_dissector.h>
Olivier Deprez157378f2022-04-04 15:47:50 +020082#include <net/xfrm.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000083#include <net/bonding.h>
84#include <net/bond_3ad.h>
85#include <net/bond_alb.h>
86
87#include "bonding_priv.h"
88
89/*---------------------------- Module parameters ----------------------------*/
90
91/* monitor all links that often (in milliseconds). <=0 disables monitoring */
92
93static int max_bonds = BOND_DEFAULT_MAX_BONDS;
94static int tx_queues = BOND_DEFAULT_TX_QUEUES;
95static int num_peer_notif = 1;
96static int miimon;
97static int updelay;
98static int downdelay;
99static int use_carrier = 1;
100static char *mode;
101static char *primary;
102static char *primary_reselect;
103static char *lacp_rate;
104static int min_links;
105static char *ad_select;
106static char *xmit_hash_policy;
107static int arp_interval;
108static char *arp_ip_target[BOND_MAX_ARP_TARGETS];
109static char *arp_validate;
110static char *arp_all_targets;
111static char *fail_over_mac;
112static int all_slaves_active;
113static struct bond_params bonding_defaults;
114static int resend_igmp = BOND_DEFAULT_RESEND_IGMP;
115static int packets_per_slave = 1;
116static int lp_interval = BOND_ALB_DEFAULT_LP_INTERVAL;
117
118module_param(max_bonds, int, 0);
119MODULE_PARM_DESC(max_bonds, "Max number of bonded devices");
120module_param(tx_queues, int, 0);
121MODULE_PARM_DESC(tx_queues, "Max number of transmit queues (default = 16)");
122module_param_named(num_grat_arp, num_peer_notif, int, 0644);
123MODULE_PARM_DESC(num_grat_arp, "Number of peer notifications to send on "
124 "failover event (alias of num_unsol_na)");
125module_param_named(num_unsol_na, num_peer_notif, int, 0644);
126MODULE_PARM_DESC(num_unsol_na, "Number of peer notifications to send on "
127 "failover event (alias of num_grat_arp)");
128module_param(miimon, int, 0);
129MODULE_PARM_DESC(miimon, "Link check interval in milliseconds");
130module_param(updelay, int, 0);
131MODULE_PARM_DESC(updelay, "Delay before considering link up, in milliseconds");
132module_param(downdelay, int, 0);
133MODULE_PARM_DESC(downdelay, "Delay before considering link down, "
134 "in milliseconds");
135module_param(use_carrier, int, 0);
136MODULE_PARM_DESC(use_carrier, "Use netif_carrier_ok (vs MII ioctls) in miimon; "
137 "0 for off, 1 for on (default)");
138module_param(mode, charp, 0);
139MODULE_PARM_DESC(mode, "Mode of operation; 0 for balance-rr, "
140 "1 for active-backup, 2 for balance-xor, "
141 "3 for broadcast, 4 for 802.3ad, 5 for balance-tlb, "
142 "6 for balance-alb");
143module_param(primary, charp, 0);
144MODULE_PARM_DESC(primary, "Primary network device to use");
145module_param(primary_reselect, charp, 0);
146MODULE_PARM_DESC(primary_reselect, "Reselect primary slave "
147 "once it comes up; "
148 "0 for always (default), "
149 "1 for only if speed of primary is "
150 "better, "
151 "2 for only on active slave "
152 "failure");
153module_param(lacp_rate, charp, 0);
154MODULE_PARM_DESC(lacp_rate, "LACPDU tx rate to request from 802.3ad partner; "
155 "0 for slow, 1 for fast");
156module_param(ad_select, charp, 0);
157MODULE_PARM_DESC(ad_select, "802.3ad aggregation selection logic; "
158 "0 for stable (default), 1 for bandwidth, "
159 "2 for count");
160module_param(min_links, int, 0);
161MODULE_PARM_DESC(min_links, "Minimum number of available links before turning on carrier");
162
163module_param(xmit_hash_policy, charp, 0);
164MODULE_PARM_DESC(xmit_hash_policy, "balance-alb, balance-tlb, balance-xor, 802.3ad hashing method; "
165 "0 for layer 2 (default), 1 for layer 3+4, "
166 "2 for layer 2+3, 3 for encap layer 2+3, "
167 "4 for encap layer 3+4");
168module_param(arp_interval, int, 0);
169MODULE_PARM_DESC(arp_interval, "arp interval in milliseconds");
170module_param_array(arp_ip_target, charp, NULL, 0);
171MODULE_PARM_DESC(arp_ip_target, "arp targets in n.n.n.n form");
172module_param(arp_validate, charp, 0);
173MODULE_PARM_DESC(arp_validate, "validate src/dst of ARP probes; "
174 "0 for none (default), 1 for active, "
175 "2 for backup, 3 for all");
176module_param(arp_all_targets, charp, 0);
177MODULE_PARM_DESC(arp_all_targets, "fail on any/all arp targets timeout; 0 for any (default), 1 for all");
178module_param(fail_over_mac, charp, 0);
179MODULE_PARM_DESC(fail_over_mac, "For active-backup, do not set all slaves to "
180 "the same MAC; 0 for none (default), "
181 "1 for active, 2 for follow");
182module_param(all_slaves_active, int, 0);
183MODULE_PARM_DESC(all_slaves_active, "Keep all frames received on an interface "
184 "by setting active flag for all slaves; "
185 "0 for never (default), 1 for always.");
186module_param(resend_igmp, int, 0);
187MODULE_PARM_DESC(resend_igmp, "Number of IGMP membership reports to send on "
188 "link failure");
189module_param(packets_per_slave, int, 0);
190MODULE_PARM_DESC(packets_per_slave, "Packets to send per slave in balance-rr "
191 "mode; 0 for a random slave, 1 packet per "
192 "slave (default), >1 packets per slave.");
193module_param(lp_interval, uint, 0);
194MODULE_PARM_DESC(lp_interval, "The number of seconds between instances where "
195 "the bonding driver sends learning packets to "
196 "each slaves peer switch. The default is 1.");
197
198/*----------------------------- Global variables ----------------------------*/
199
200#ifdef CONFIG_NET_POLL_CONTROLLER
201atomic_t netpoll_block_tx = ATOMIC_INIT(0);
202#endif
203
204unsigned int bond_net_id __read_mostly;
205
Olivier Deprez157378f2022-04-04 15:47:50 +0200206static const struct flow_dissector_key flow_keys_bonding_keys[] = {
207 {
208 .key_id = FLOW_DISSECTOR_KEY_CONTROL,
209 .offset = offsetof(struct flow_keys, control),
210 },
211 {
212 .key_id = FLOW_DISSECTOR_KEY_BASIC,
213 .offset = offsetof(struct flow_keys, basic),
214 },
215 {
216 .key_id = FLOW_DISSECTOR_KEY_IPV4_ADDRS,
217 .offset = offsetof(struct flow_keys, addrs.v4addrs),
218 },
219 {
220 .key_id = FLOW_DISSECTOR_KEY_IPV6_ADDRS,
221 .offset = offsetof(struct flow_keys, addrs.v6addrs),
222 },
223 {
224 .key_id = FLOW_DISSECTOR_KEY_TIPC,
225 .offset = offsetof(struct flow_keys, addrs.tipckey),
226 },
227 {
228 .key_id = FLOW_DISSECTOR_KEY_PORTS,
229 .offset = offsetof(struct flow_keys, ports),
230 },
231 {
232 .key_id = FLOW_DISSECTOR_KEY_ICMP,
233 .offset = offsetof(struct flow_keys, icmp),
234 },
235 {
236 .key_id = FLOW_DISSECTOR_KEY_VLAN,
237 .offset = offsetof(struct flow_keys, vlan),
238 },
239 {
240 .key_id = FLOW_DISSECTOR_KEY_FLOW_LABEL,
241 .offset = offsetof(struct flow_keys, tags),
242 },
243 {
244 .key_id = FLOW_DISSECTOR_KEY_GRE_KEYID,
245 .offset = offsetof(struct flow_keys, keyid),
246 },
247};
248
249static struct flow_dissector flow_keys_bonding __read_mostly;
250
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000251/*-------------------------- Forward declarations ---------------------------*/
252
253static int bond_init(struct net_device *bond_dev);
254static void bond_uninit(struct net_device *bond_dev);
255static void bond_get_stats(struct net_device *bond_dev,
256 struct rtnl_link_stats64 *stats);
257static void bond_slave_arr_handler(struct work_struct *work);
258static bool bond_time_in_interval(struct bonding *bond, unsigned long last_act,
259 int mod);
260static void bond_netdev_notify_work(struct work_struct *work);
261
262/*---------------------------- General routines -----------------------------*/
263
264const char *bond_mode_name(int mode)
265{
266 static const char *names[] = {
267 [BOND_MODE_ROUNDROBIN] = "load balancing (round-robin)",
268 [BOND_MODE_ACTIVEBACKUP] = "fault-tolerance (active-backup)",
269 [BOND_MODE_XOR] = "load balancing (xor)",
270 [BOND_MODE_BROADCAST] = "fault-tolerance (broadcast)",
271 [BOND_MODE_8023AD] = "IEEE 802.3ad Dynamic link aggregation",
272 [BOND_MODE_TLB] = "transmit load balancing",
273 [BOND_MODE_ALB] = "adaptive load balancing",
274 };
275
276 if (mode < BOND_MODE_ROUNDROBIN || mode > BOND_MODE_ALB)
277 return "unknown";
278
279 return names[mode];
280}
281
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000282/**
283 * bond_dev_queue_xmit - Prepare skb for xmit.
284 *
285 * @bond: bond device that got this skb for tx.
286 * @skb: hw accel VLAN tagged skb to transmit
287 * @slave_dev: slave that is supposed to xmit this skbuff
288 */
Olivier Deprez157378f2022-04-04 15:47:50 +0200289netdev_tx_t bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000290 struct net_device *slave_dev)
291{
292 skb->dev = slave_dev;
293
294 BUILD_BUG_ON(sizeof(skb->queue_mapping) !=
295 sizeof(qdisc_skb_cb(skb)->slave_dev_queue_mapping));
296 skb_set_queue_mapping(skb, qdisc_skb_cb(skb)->slave_dev_queue_mapping);
297
298 if (unlikely(netpoll_tx_running(bond->dev)))
Olivier Deprez157378f2022-04-04 15:47:50 +0200299 return bond_netpoll_send_skb(bond_get_slave_by_dev(bond, slave_dev), skb);
300
301 return dev_queue_xmit(skb);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000302}
303
Olivier Deprez157378f2022-04-04 15:47:50 +0200304/*---------------------------------- VLAN -----------------------------------*/
305
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000306/* In the following 2 functions, bond_vlan_rx_add_vid and bond_vlan_rx_kill_vid,
307 * We don't protect the slave list iteration with a lock because:
308 * a. This operation is performed in IOCTL context,
309 * b. The operation is protected by the RTNL semaphore in the 8021q code,
310 * c. Holding a lock with BH disabled while directly calling a base driver
311 * entry point is generally a BAD idea.
312 *
313 * The design of synchronization/protection for this operation in the 8021q
314 * module is good for one or more VLAN devices over a single physical device
315 * and cannot be extended for a teaming solution like bonding, so there is a
316 * potential race condition here where a net device from the vlan group might
317 * be referenced (either by a base driver or the 8021q code) while it is being
318 * removed from the system. However, it turns out we're not making matters
319 * worse, and if it works for regular VLAN usage it will work here too.
320*/
321
322/**
323 * bond_vlan_rx_add_vid - Propagates adding an id to slaves
324 * @bond_dev: bonding net device that got called
Olivier Deprez157378f2022-04-04 15:47:50 +0200325 * @proto: network protocol ID
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000326 * @vid: vlan id being added
327 */
328static int bond_vlan_rx_add_vid(struct net_device *bond_dev,
329 __be16 proto, u16 vid)
330{
331 struct bonding *bond = netdev_priv(bond_dev);
332 struct slave *slave, *rollback_slave;
333 struct list_head *iter;
334 int res;
335
336 bond_for_each_slave(bond, slave, iter) {
337 res = vlan_vid_add(slave->dev, proto, vid);
338 if (res)
339 goto unwind;
340 }
341
342 return 0;
343
344unwind:
345 /* unwind to the slave that failed */
346 bond_for_each_slave(bond, rollback_slave, iter) {
347 if (rollback_slave == slave)
348 break;
349
350 vlan_vid_del(rollback_slave->dev, proto, vid);
351 }
352
353 return res;
354}
355
356/**
357 * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves
358 * @bond_dev: bonding net device that got called
Olivier Deprez157378f2022-04-04 15:47:50 +0200359 * @proto: network protocol ID
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000360 * @vid: vlan id being removed
361 */
362static int bond_vlan_rx_kill_vid(struct net_device *bond_dev,
363 __be16 proto, u16 vid)
364{
365 struct bonding *bond = netdev_priv(bond_dev);
366 struct list_head *iter;
367 struct slave *slave;
368
369 bond_for_each_slave(bond, slave, iter)
370 vlan_vid_del(slave->dev, proto, vid);
371
372 if (bond_is_lb(bond))
373 bond_alb_clear_vlan(bond, vid);
374
375 return 0;
376}
377
Olivier Deprez157378f2022-04-04 15:47:50 +0200378/*---------------------------------- XFRM -----------------------------------*/
379
380#ifdef CONFIG_XFRM_OFFLOAD
381/**
382 * bond_ipsec_add_sa - program device with a security association
383 * @xs: pointer to transformer state struct
384 **/
385static int bond_ipsec_add_sa(struct xfrm_state *xs)
386{
387 struct net_device *bond_dev = xs->xso.dev;
388 struct bond_ipsec *ipsec;
389 struct bonding *bond;
390 struct slave *slave;
391 int err;
392
393 if (!bond_dev)
394 return -EINVAL;
395
396 rcu_read_lock();
397 bond = netdev_priv(bond_dev);
398 slave = rcu_dereference(bond->curr_active_slave);
399 if (!slave) {
400 rcu_read_unlock();
401 return -ENODEV;
402 }
403
404 if (!slave->dev->xfrmdev_ops ||
405 !slave->dev->xfrmdev_ops->xdo_dev_state_add ||
406 netif_is_bond_master(slave->dev)) {
407 slave_warn(bond_dev, slave->dev, "Slave does not support ipsec offload\n");
408 rcu_read_unlock();
409 return -EINVAL;
410 }
411
412 ipsec = kmalloc(sizeof(*ipsec), GFP_ATOMIC);
413 if (!ipsec) {
414 rcu_read_unlock();
415 return -ENOMEM;
416 }
417 xs->xso.real_dev = slave->dev;
418
419 err = slave->dev->xfrmdev_ops->xdo_dev_state_add(xs);
420 if (!err) {
421 ipsec->xs = xs;
422 INIT_LIST_HEAD(&ipsec->list);
423 spin_lock_bh(&bond->ipsec_lock);
424 list_add(&ipsec->list, &bond->ipsec_list);
425 spin_unlock_bh(&bond->ipsec_lock);
426 } else {
427 kfree(ipsec);
428 }
429 rcu_read_unlock();
430 return err;
431}
432
433static void bond_ipsec_add_sa_all(struct bonding *bond)
434{
435 struct net_device *bond_dev = bond->dev;
436 struct bond_ipsec *ipsec;
437 struct slave *slave;
438
439 rcu_read_lock();
440 slave = rcu_dereference(bond->curr_active_slave);
441 if (!slave)
442 goto out;
443
444 if (!slave->dev->xfrmdev_ops ||
445 !slave->dev->xfrmdev_ops->xdo_dev_state_add ||
446 netif_is_bond_master(slave->dev)) {
447 spin_lock_bh(&bond->ipsec_lock);
448 if (!list_empty(&bond->ipsec_list))
449 slave_warn(bond_dev, slave->dev,
450 "%s: no slave xdo_dev_state_add\n",
451 __func__);
452 spin_unlock_bh(&bond->ipsec_lock);
453 goto out;
454 }
455
456 spin_lock_bh(&bond->ipsec_lock);
457 list_for_each_entry(ipsec, &bond->ipsec_list, list) {
458 ipsec->xs->xso.real_dev = slave->dev;
459 if (slave->dev->xfrmdev_ops->xdo_dev_state_add(ipsec->xs)) {
460 slave_warn(bond_dev, slave->dev, "%s: failed to add SA\n", __func__);
461 ipsec->xs->xso.real_dev = NULL;
462 }
463 }
464 spin_unlock_bh(&bond->ipsec_lock);
465out:
466 rcu_read_unlock();
467}
468
469/**
470 * bond_ipsec_del_sa - clear out this specific SA
471 * @xs: pointer to transformer state struct
472 **/
473static void bond_ipsec_del_sa(struct xfrm_state *xs)
474{
475 struct net_device *bond_dev = xs->xso.dev;
476 struct bond_ipsec *ipsec;
477 struct bonding *bond;
478 struct slave *slave;
479
480 if (!bond_dev)
481 return;
482
483 rcu_read_lock();
484 bond = netdev_priv(bond_dev);
485 slave = rcu_dereference(bond->curr_active_slave);
486
487 if (!slave)
488 goto out;
489
490 if (!xs->xso.real_dev)
491 goto out;
492
493 WARN_ON(xs->xso.real_dev != slave->dev);
494
495 if (!slave->dev->xfrmdev_ops ||
496 !slave->dev->xfrmdev_ops->xdo_dev_state_delete ||
497 netif_is_bond_master(slave->dev)) {
498 slave_warn(bond_dev, slave->dev, "%s: no slave xdo_dev_state_delete\n", __func__);
499 goto out;
500 }
501
502 slave->dev->xfrmdev_ops->xdo_dev_state_delete(xs);
503out:
504 spin_lock_bh(&bond->ipsec_lock);
505 list_for_each_entry(ipsec, &bond->ipsec_list, list) {
506 if (ipsec->xs == xs) {
507 list_del(&ipsec->list);
508 kfree(ipsec);
509 break;
510 }
511 }
512 spin_unlock_bh(&bond->ipsec_lock);
513 rcu_read_unlock();
514}
515
516static void bond_ipsec_del_sa_all(struct bonding *bond)
517{
518 struct net_device *bond_dev = bond->dev;
519 struct bond_ipsec *ipsec;
520 struct slave *slave;
521
522 rcu_read_lock();
523 slave = rcu_dereference(bond->curr_active_slave);
524 if (!slave) {
525 rcu_read_unlock();
526 return;
527 }
528
529 spin_lock_bh(&bond->ipsec_lock);
530 list_for_each_entry(ipsec, &bond->ipsec_list, list) {
531 if (!ipsec->xs->xso.real_dev)
532 continue;
533
534 if (!slave->dev->xfrmdev_ops ||
535 !slave->dev->xfrmdev_ops->xdo_dev_state_delete ||
536 netif_is_bond_master(slave->dev)) {
537 slave_warn(bond_dev, slave->dev,
538 "%s: no slave xdo_dev_state_delete\n",
539 __func__);
540 } else {
541 slave->dev->xfrmdev_ops->xdo_dev_state_delete(ipsec->xs);
542 }
543 ipsec->xs->xso.real_dev = NULL;
544 }
545 spin_unlock_bh(&bond->ipsec_lock);
546 rcu_read_unlock();
547}
548
549/**
550 * bond_ipsec_offload_ok - can this packet use the xfrm hw offload
551 * @skb: current data packet
552 * @xs: pointer to transformer state struct
553 **/
554static bool bond_ipsec_offload_ok(struct sk_buff *skb, struct xfrm_state *xs)
555{
556 struct net_device *bond_dev = xs->xso.dev;
557 struct net_device *real_dev;
558 struct slave *curr_active;
559 struct bonding *bond;
560 int err;
561
562 bond = netdev_priv(bond_dev);
563 rcu_read_lock();
564 curr_active = rcu_dereference(bond->curr_active_slave);
565 real_dev = curr_active->dev;
566
567 if (BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP) {
568 err = false;
569 goto out;
570 }
571
572 if (!xs->xso.real_dev) {
573 err = false;
574 goto out;
575 }
576
577 if (!real_dev->xfrmdev_ops ||
578 !real_dev->xfrmdev_ops->xdo_dev_offload_ok ||
579 netif_is_bond_master(real_dev)) {
580 err = false;
581 goto out;
582 }
583
584 err = real_dev->xfrmdev_ops->xdo_dev_offload_ok(skb, xs);
585out:
586 rcu_read_unlock();
587 return err;
588}
589
590static const struct xfrmdev_ops bond_xfrmdev_ops = {
591 .xdo_dev_state_add = bond_ipsec_add_sa,
592 .xdo_dev_state_delete = bond_ipsec_del_sa,
593 .xdo_dev_offload_ok = bond_ipsec_offload_ok,
594};
595#endif /* CONFIG_XFRM_OFFLOAD */
596
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000597/*------------------------------- Link status -------------------------------*/
598
599/* Set the carrier state for the master according to the state of its
600 * slaves. If any slaves are up, the master is up. In 802.3ad mode,
601 * do special 802.3ad magic.
602 *
603 * Returns zero if carrier state does not change, nonzero if it does.
604 */
605int bond_set_carrier(struct bonding *bond)
606{
607 struct list_head *iter;
608 struct slave *slave;
609
610 if (!bond_has_slaves(bond))
611 goto down;
612
613 if (BOND_MODE(bond) == BOND_MODE_8023AD)
614 return bond_3ad_set_carrier(bond);
615
616 bond_for_each_slave(bond, slave, iter) {
617 if (slave->link == BOND_LINK_UP) {
618 if (!netif_carrier_ok(bond->dev)) {
619 netif_carrier_on(bond->dev);
620 return 1;
621 }
622 return 0;
623 }
624 }
625
626down:
627 if (netif_carrier_ok(bond->dev)) {
628 netif_carrier_off(bond->dev);
629 return 1;
630 }
631 return 0;
632}
633
634/* Get link speed and duplex from the slave's base driver
635 * using ethtool. If for some reason the call fails or the
636 * values are invalid, set speed and duplex to -1,
637 * and return. Return 1 if speed or duplex settings are
638 * UNKNOWN; 0 otherwise.
639 */
640static int bond_update_speed_duplex(struct slave *slave)
641{
642 struct net_device *slave_dev = slave->dev;
643 struct ethtool_link_ksettings ecmd;
644 int res;
645
646 slave->speed = SPEED_UNKNOWN;
647 slave->duplex = DUPLEX_UNKNOWN;
648
649 res = __ethtool_get_link_ksettings(slave_dev, &ecmd);
650 if (res < 0)
651 return 1;
652 if (ecmd.base.speed == 0 || ecmd.base.speed == ((__u32)-1))
653 return 1;
654 switch (ecmd.base.duplex) {
655 case DUPLEX_FULL:
656 case DUPLEX_HALF:
657 break;
658 default:
659 return 1;
660 }
661
662 slave->speed = ecmd.base.speed;
663 slave->duplex = ecmd.base.duplex;
664
665 return 0;
666}
667
668const char *bond_slave_link_status(s8 link)
669{
670 switch (link) {
671 case BOND_LINK_UP:
672 return "up";
673 case BOND_LINK_FAIL:
674 return "going down";
675 case BOND_LINK_DOWN:
676 return "down";
677 case BOND_LINK_BACK:
678 return "going back";
679 default:
680 return "unknown";
681 }
682}
683
684/* if <dev> supports MII link status reporting, check its link status.
685 *
686 * We either do MII/ETHTOOL ioctls, or check netif_carrier_ok(),
687 * depending upon the setting of the use_carrier parameter.
688 *
689 * Return either BMSR_LSTATUS, meaning that the link is up (or we
690 * can't tell and just pretend it is), or 0, meaning that the link is
691 * down.
692 *
693 * If reporting is non-zero, instead of faking link up, return -1 if
694 * both ETHTOOL and MII ioctls fail (meaning the device does not
695 * support them). If use_carrier is set, return whatever it says.
696 * It'd be nice if there was a good way to tell if a driver supports
697 * netif_carrier, but there really isn't.
698 */
699static int bond_check_dev_link(struct bonding *bond,
700 struct net_device *slave_dev, int reporting)
701{
702 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
703 int (*ioctl)(struct net_device *, struct ifreq *, int);
704 struct ifreq ifr;
705 struct mii_ioctl_data *mii;
706
707 if (!reporting && !netif_running(slave_dev))
708 return 0;
709
710 if (bond->params.use_carrier)
711 return netif_carrier_ok(slave_dev) ? BMSR_LSTATUS : 0;
712
713 /* Try to get link status using Ethtool first. */
714 if (slave_dev->ethtool_ops->get_link)
715 return slave_dev->ethtool_ops->get_link(slave_dev) ?
716 BMSR_LSTATUS : 0;
717
718 /* Ethtool can't be used, fallback to MII ioctls. */
719 ioctl = slave_ops->ndo_do_ioctl;
720 if (ioctl) {
721 /* TODO: set pointer to correct ioctl on a per team member
722 * bases to make this more efficient. that is, once
723 * we determine the correct ioctl, we will always
724 * call it and not the others for that team
725 * member.
726 */
727
728 /* We cannot assume that SIOCGMIIPHY will also read a
729 * register; not all network drivers (e.g., e100)
730 * support that.
731 */
732
733 /* Yes, the mii is overlaid on the ifreq.ifr_ifru */
734 strncpy(ifr.ifr_name, slave_dev->name, IFNAMSIZ);
735 mii = if_mii(&ifr);
736 if (ioctl(slave_dev, &ifr, SIOCGMIIPHY) == 0) {
737 mii->reg_num = MII_BMSR;
738 if (ioctl(slave_dev, &ifr, SIOCGMIIREG) == 0)
739 return mii->val_out & BMSR_LSTATUS;
740 }
741 }
742
743 /* If reporting, report that either there's no dev->do_ioctl,
744 * or both SIOCGMIIREG and get_link failed (meaning that we
745 * cannot report link status). If not reporting, pretend
746 * we're ok.
747 */
748 return reporting ? -1 : BMSR_LSTATUS;
749}
750
751/*----------------------------- Multicast list ------------------------------*/
752
753/* Push the promiscuity flag down to appropriate slaves */
754static int bond_set_promiscuity(struct bonding *bond, int inc)
755{
756 struct list_head *iter;
757 int err = 0;
758
759 if (bond_uses_primary(bond)) {
760 struct slave *curr_active = rtnl_dereference(bond->curr_active_slave);
761
762 if (curr_active)
763 err = dev_set_promiscuity(curr_active->dev, inc);
764 } else {
765 struct slave *slave;
766
767 bond_for_each_slave(bond, slave, iter) {
768 err = dev_set_promiscuity(slave->dev, inc);
769 if (err)
770 return err;
771 }
772 }
773 return err;
774}
775
776/* Push the allmulti flag down to all slaves */
777static int bond_set_allmulti(struct bonding *bond, int inc)
778{
779 struct list_head *iter;
780 int err = 0;
781
782 if (bond_uses_primary(bond)) {
783 struct slave *curr_active = rtnl_dereference(bond->curr_active_slave);
784
785 if (curr_active)
786 err = dev_set_allmulti(curr_active->dev, inc);
787 } else {
788 struct slave *slave;
789
790 bond_for_each_slave(bond, slave, iter) {
791 err = dev_set_allmulti(slave->dev, inc);
792 if (err)
793 return err;
794 }
795 }
796 return err;
797}
798
799/* Retrieve the list of registered multicast addresses for the bonding
800 * device and retransmit an IGMP JOIN request to the current active
801 * slave.
802 */
803static void bond_resend_igmp_join_requests_delayed(struct work_struct *work)
804{
805 struct bonding *bond = container_of(work, struct bonding,
806 mcast_work.work);
807
808 if (!rtnl_trylock()) {
809 queue_delayed_work(bond->wq, &bond->mcast_work, 1);
810 return;
811 }
812 call_netdevice_notifiers(NETDEV_RESEND_IGMP, bond->dev);
813
814 if (bond->igmp_retrans > 1) {
815 bond->igmp_retrans--;
816 queue_delayed_work(bond->wq, &bond->mcast_work, HZ/5);
817 }
818 rtnl_unlock();
819}
820
821/* Flush bond's hardware addresses from slave */
822static void bond_hw_addr_flush(struct net_device *bond_dev,
823 struct net_device *slave_dev)
824{
825 struct bonding *bond = netdev_priv(bond_dev);
826
827 dev_uc_unsync(slave_dev, bond_dev);
828 dev_mc_unsync(slave_dev, bond_dev);
829
830 if (BOND_MODE(bond) == BOND_MODE_8023AD) {
831 /* del lacpdu mc addr from mc list */
832 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
833
834 dev_mc_del(slave_dev, lacpdu_multicast);
835 }
836}
837
838/*--------------------------- Active slave change ---------------------------*/
839
840/* Update the hardware address list and promisc/allmulti for the new and
841 * old active slaves (if any). Modes that are not using primary keep all
842 * slaves up date at all times; only the modes that use primary need to call
843 * this function to swap these settings during a failover.
844 */
845static void bond_hw_addr_swap(struct bonding *bond, struct slave *new_active,
846 struct slave *old_active)
847{
848 if (old_active) {
849 if (bond->dev->flags & IFF_PROMISC)
850 dev_set_promiscuity(old_active->dev, -1);
851
852 if (bond->dev->flags & IFF_ALLMULTI)
853 dev_set_allmulti(old_active->dev, -1);
854
855 bond_hw_addr_flush(bond->dev, old_active->dev);
856 }
857
858 if (new_active) {
859 /* FIXME: Signal errors upstream. */
860 if (bond->dev->flags & IFF_PROMISC)
861 dev_set_promiscuity(new_active->dev, 1);
862
863 if (bond->dev->flags & IFF_ALLMULTI)
864 dev_set_allmulti(new_active->dev, 1);
865
866 netif_addr_lock_bh(bond->dev);
867 dev_uc_sync(new_active->dev, bond->dev);
868 dev_mc_sync(new_active->dev, bond->dev);
869 netif_addr_unlock_bh(bond->dev);
870 }
871}
872
873/**
874 * bond_set_dev_addr - clone slave's address to bond
875 * @bond_dev: bond net device
876 * @slave_dev: slave net device
877 *
878 * Should be called with RTNL held.
879 */
David Brazdil0f672f62019-12-10 10:32:29 +0000880static int bond_set_dev_addr(struct net_device *bond_dev,
881 struct net_device *slave_dev)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000882{
David Brazdil0f672f62019-12-10 10:32:29 +0000883 int err;
884
885 slave_dbg(bond_dev, slave_dev, "bond_dev=%p slave_dev=%p slave_dev->addr_len=%d\n",
886 bond_dev, slave_dev, slave_dev->addr_len);
887 err = dev_pre_changeaddr_notify(bond_dev, slave_dev->dev_addr, NULL);
888 if (err)
889 return err;
890
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000891 memcpy(bond_dev->dev_addr, slave_dev->dev_addr, slave_dev->addr_len);
892 bond_dev->addr_assign_type = NET_ADDR_STOLEN;
893 call_netdevice_notifiers(NETDEV_CHANGEADDR, bond_dev);
David Brazdil0f672f62019-12-10 10:32:29 +0000894 return 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000895}
896
897static struct slave *bond_get_old_active(struct bonding *bond,
898 struct slave *new_active)
899{
900 struct slave *slave;
901 struct list_head *iter;
902
903 bond_for_each_slave(bond, slave, iter) {
904 if (slave == new_active)
905 continue;
906
907 if (ether_addr_equal(bond->dev->dev_addr, slave->dev->dev_addr))
908 return slave;
909 }
910
911 return NULL;
912}
913
914/* bond_do_fail_over_mac
915 *
916 * Perform special MAC address swapping for fail_over_mac settings
917 *
918 * Called with RTNL
919 */
920static void bond_do_fail_over_mac(struct bonding *bond,
921 struct slave *new_active,
922 struct slave *old_active)
923{
924 u8 tmp_mac[MAX_ADDR_LEN];
925 struct sockaddr_storage ss;
926 int rv;
927
928 switch (bond->params.fail_over_mac) {
929 case BOND_FOM_ACTIVE:
David Brazdil0f672f62019-12-10 10:32:29 +0000930 if (new_active) {
931 rv = bond_set_dev_addr(bond->dev, new_active->dev);
932 if (rv)
933 slave_err(bond->dev, new_active->dev, "Error %d setting bond MAC from slave\n",
934 -rv);
935 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000936 break;
937 case BOND_FOM_FOLLOW:
938 /* if new_active && old_active, swap them
939 * if just old_active, do nothing (going to no active slave)
940 * if just new_active, set new_active to bond's MAC
941 */
942 if (!new_active)
943 return;
944
945 if (!old_active)
946 old_active = bond_get_old_active(bond, new_active);
947
948 if (old_active) {
949 bond_hw_addr_copy(tmp_mac, new_active->dev->dev_addr,
950 new_active->dev->addr_len);
951 bond_hw_addr_copy(ss.__data,
952 old_active->dev->dev_addr,
953 old_active->dev->addr_len);
954 ss.ss_family = new_active->dev->type;
955 } else {
956 bond_hw_addr_copy(ss.__data, bond->dev->dev_addr,
957 bond->dev->addr_len);
958 ss.ss_family = bond->dev->type;
959 }
960
961 rv = dev_set_mac_address(new_active->dev,
David Brazdil0f672f62019-12-10 10:32:29 +0000962 (struct sockaddr *)&ss, NULL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000963 if (rv) {
David Brazdil0f672f62019-12-10 10:32:29 +0000964 slave_err(bond->dev, new_active->dev, "Error %d setting MAC of new active slave\n",
965 -rv);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000966 goto out;
967 }
968
969 if (!old_active)
970 goto out;
971
972 bond_hw_addr_copy(ss.__data, tmp_mac,
973 new_active->dev->addr_len);
974 ss.ss_family = old_active->dev->type;
975
976 rv = dev_set_mac_address(old_active->dev,
David Brazdil0f672f62019-12-10 10:32:29 +0000977 (struct sockaddr *)&ss, NULL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000978 if (rv)
David Brazdil0f672f62019-12-10 10:32:29 +0000979 slave_err(bond->dev, old_active->dev, "Error %d setting MAC of old active slave\n",
980 -rv);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000981out:
982 break;
983 default:
984 netdev_err(bond->dev, "bond_do_fail_over_mac impossible: bad policy %d\n",
985 bond->params.fail_over_mac);
986 break;
987 }
988
989}
990
991static struct slave *bond_choose_primary_or_current(struct bonding *bond)
992{
993 struct slave *prim = rtnl_dereference(bond->primary_slave);
994 struct slave *curr = rtnl_dereference(bond->curr_active_slave);
995
996 if (!prim || prim->link != BOND_LINK_UP) {
997 if (!curr || curr->link != BOND_LINK_UP)
998 return NULL;
999 return curr;
1000 }
1001
1002 if (bond->force_primary) {
1003 bond->force_primary = false;
1004 return prim;
1005 }
1006
1007 if (!curr || curr->link != BOND_LINK_UP)
1008 return prim;
1009
1010 /* At this point, prim and curr are both up */
1011 switch (bond->params.primary_reselect) {
1012 case BOND_PRI_RESELECT_ALWAYS:
1013 return prim;
1014 case BOND_PRI_RESELECT_BETTER:
1015 if (prim->speed < curr->speed)
1016 return curr;
1017 if (prim->speed == curr->speed && prim->duplex <= curr->duplex)
1018 return curr;
1019 return prim;
1020 case BOND_PRI_RESELECT_FAILURE:
1021 return curr;
1022 default:
1023 netdev_err(bond->dev, "impossible primary_reselect %d\n",
1024 bond->params.primary_reselect);
1025 return curr;
1026 }
1027}
1028
1029/**
1030 * bond_find_best_slave - select the best available slave to be the active one
1031 * @bond: our bonding struct
1032 */
1033static struct slave *bond_find_best_slave(struct bonding *bond)
1034{
1035 struct slave *slave, *bestslave = NULL;
1036 struct list_head *iter;
1037 int mintime = bond->params.updelay;
1038
1039 slave = bond_choose_primary_or_current(bond);
1040 if (slave)
1041 return slave;
1042
1043 bond_for_each_slave(bond, slave, iter) {
1044 if (slave->link == BOND_LINK_UP)
1045 return slave;
1046 if (slave->link == BOND_LINK_BACK && bond_slave_is_up(slave) &&
1047 slave->delay < mintime) {
1048 mintime = slave->delay;
1049 bestslave = slave;
1050 }
1051 }
1052
1053 return bestslave;
1054}
1055
1056static bool bond_should_notify_peers(struct bonding *bond)
1057{
1058 struct slave *slave;
1059
1060 rcu_read_lock();
1061 slave = rcu_dereference(bond->curr_active_slave);
1062 rcu_read_unlock();
1063
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001064 if (!slave || !bond->send_peer_notif ||
David Brazdil0f672f62019-12-10 10:32:29 +00001065 bond->send_peer_notif %
1066 max(1, bond->params.peer_notif_delay) != 0 ||
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001067 !netif_carrier_ok(bond->dev) ||
1068 test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state))
1069 return false;
1070
Olivier Deprez157378f2022-04-04 15:47:50 +02001071 netdev_dbg(bond->dev, "bond_should_notify_peers: slave %s\n",
1072 slave ? slave->dev->name : "NULL");
1073
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001074 return true;
1075}
1076
1077/**
1078 * change_active_interface - change the active slave into the specified one
1079 * @bond: our bonding struct
Olivier Deprez157378f2022-04-04 15:47:50 +02001080 * @new_active: the new slave to make the active one
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001081 *
1082 * Set the new slave to the bond's settings and unset them on the old
1083 * curr_active_slave.
1084 * Setting include flags, mc-list, promiscuity, allmulti, etc.
1085 *
1086 * If @new's link state is %BOND_LINK_BACK we'll set it to %BOND_LINK_UP,
1087 * because it is apparently the best available slave we have, even though its
1088 * updelay hasn't timed out yet.
1089 *
1090 * Caller must hold RTNL.
1091 */
1092void bond_change_active_slave(struct bonding *bond, struct slave *new_active)
1093{
1094 struct slave *old_active;
1095
1096 ASSERT_RTNL();
1097
1098 old_active = rtnl_dereference(bond->curr_active_slave);
1099
1100 if (old_active == new_active)
1101 return;
1102
Olivier Deprez157378f2022-04-04 15:47:50 +02001103#ifdef CONFIG_XFRM_OFFLOAD
1104 bond_ipsec_del_sa_all(bond);
1105#endif /* CONFIG_XFRM_OFFLOAD */
1106
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001107 if (new_active) {
1108 new_active->last_link_up = jiffies;
1109
1110 if (new_active->link == BOND_LINK_BACK) {
1111 if (bond_uses_primary(bond)) {
David Brazdil0f672f62019-12-10 10:32:29 +00001112 slave_info(bond->dev, new_active->dev, "making interface the new active one %d ms earlier\n",
1113 (bond->params.updelay - new_active->delay) * bond->params.miimon);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001114 }
1115
1116 new_active->delay = 0;
1117 bond_set_slave_link_state(new_active, BOND_LINK_UP,
1118 BOND_SLAVE_NOTIFY_NOW);
1119
1120 if (BOND_MODE(bond) == BOND_MODE_8023AD)
1121 bond_3ad_handle_link_change(new_active, BOND_LINK_UP);
1122
1123 if (bond_is_lb(bond))
1124 bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP);
1125 } else {
1126 if (bond_uses_primary(bond)) {
David Brazdil0f672f62019-12-10 10:32:29 +00001127 slave_info(bond->dev, new_active->dev, "making interface the new active one\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001128 }
1129 }
1130 }
1131
1132 if (bond_uses_primary(bond))
1133 bond_hw_addr_swap(bond, new_active, old_active);
1134
1135 if (bond_is_lb(bond)) {
1136 bond_alb_handle_active_change(bond, new_active);
1137 if (old_active)
1138 bond_set_slave_inactive_flags(old_active,
1139 BOND_SLAVE_NOTIFY_NOW);
1140 if (new_active)
1141 bond_set_slave_active_flags(new_active,
1142 BOND_SLAVE_NOTIFY_NOW);
1143 } else {
1144 rcu_assign_pointer(bond->curr_active_slave, new_active);
1145 }
1146
1147 if (BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP) {
1148 if (old_active)
1149 bond_set_slave_inactive_flags(old_active,
1150 BOND_SLAVE_NOTIFY_NOW);
1151
1152 if (new_active) {
1153 bool should_notify_peers = false;
1154
1155 bond_set_slave_active_flags(new_active,
1156 BOND_SLAVE_NOTIFY_NOW);
1157
1158 if (bond->params.fail_over_mac)
1159 bond_do_fail_over_mac(bond, new_active,
1160 old_active);
1161
1162 if (netif_running(bond->dev)) {
1163 bond->send_peer_notif =
David Brazdil0f672f62019-12-10 10:32:29 +00001164 bond->params.num_peer_notif *
1165 max(1, bond->params.peer_notif_delay);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001166 should_notify_peers =
1167 bond_should_notify_peers(bond);
1168 }
1169
1170 call_netdevice_notifiers(NETDEV_BONDING_FAILOVER, bond->dev);
David Brazdil0f672f62019-12-10 10:32:29 +00001171 if (should_notify_peers) {
1172 bond->send_peer_notif--;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001173 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS,
1174 bond->dev);
David Brazdil0f672f62019-12-10 10:32:29 +00001175 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001176 }
1177 }
1178
Olivier Deprez157378f2022-04-04 15:47:50 +02001179#ifdef CONFIG_XFRM_OFFLOAD
1180 bond_ipsec_add_sa_all(bond);
1181#endif /* CONFIG_XFRM_OFFLOAD */
1182
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001183 /* resend IGMP joins since active slave has changed or
1184 * all were sent on curr_active_slave.
1185 * resend only if bond is brought up with the affected
1186 * bonding modes and the retransmission is enabled
1187 */
1188 if (netif_running(bond->dev) && (bond->params.resend_igmp > 0) &&
1189 ((bond_uses_primary(bond) && new_active) ||
1190 BOND_MODE(bond) == BOND_MODE_ROUNDROBIN)) {
1191 bond->igmp_retrans = bond->params.resend_igmp;
1192 queue_delayed_work(bond->wq, &bond->mcast_work, 1);
1193 }
1194}
1195
1196/**
1197 * bond_select_active_slave - select a new active slave, if needed
1198 * @bond: our bonding struct
1199 *
1200 * This functions should be called when one of the following occurs:
1201 * - The old curr_active_slave has been released or lost its link.
1202 * - The primary_slave has got its link back.
1203 * - A slave has got its link back and there's no old curr_active_slave.
1204 *
1205 * Caller must hold RTNL.
1206 */
1207void bond_select_active_slave(struct bonding *bond)
1208{
1209 struct slave *best_slave;
1210 int rv;
1211
1212 ASSERT_RTNL();
1213
1214 best_slave = bond_find_best_slave(bond);
1215 if (best_slave != rtnl_dereference(bond->curr_active_slave)) {
1216 bond_change_active_slave(bond, best_slave);
1217 rv = bond_set_carrier(bond);
1218 if (!rv)
1219 return;
1220
1221 if (netif_carrier_ok(bond->dev))
David Brazdil0f672f62019-12-10 10:32:29 +00001222 netdev_info(bond->dev, "active interface up!\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001223 else
1224 netdev_info(bond->dev, "now running without any active interface!\n");
1225 }
1226}
1227
1228#ifdef CONFIG_NET_POLL_CONTROLLER
1229static inline int slave_enable_netpoll(struct slave *slave)
1230{
1231 struct netpoll *np;
1232 int err = 0;
1233
1234 np = kzalloc(sizeof(*np), GFP_KERNEL);
1235 err = -ENOMEM;
1236 if (!np)
1237 goto out;
1238
1239 err = __netpoll_setup(np, slave->dev);
1240 if (err) {
1241 kfree(np);
1242 goto out;
1243 }
1244 slave->np = np;
1245out:
1246 return err;
1247}
1248static inline void slave_disable_netpoll(struct slave *slave)
1249{
1250 struct netpoll *np = slave->np;
1251
1252 if (!np)
1253 return;
1254
1255 slave->np = NULL;
David Brazdil0f672f62019-12-10 10:32:29 +00001256
1257 __netpoll_free(np);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001258}
1259
1260static void bond_poll_controller(struct net_device *bond_dev)
1261{
1262 struct bonding *bond = netdev_priv(bond_dev);
1263 struct slave *slave = NULL;
1264 struct list_head *iter;
1265 struct ad_info ad_info;
1266
1267 if (BOND_MODE(bond) == BOND_MODE_8023AD)
1268 if (bond_3ad_get_active_agg_info(bond, &ad_info))
1269 return;
1270
1271 bond_for_each_slave_rcu(bond, slave, iter) {
1272 if (!bond_slave_is_up(slave))
1273 continue;
1274
1275 if (BOND_MODE(bond) == BOND_MODE_8023AD) {
1276 struct aggregator *agg =
1277 SLAVE_AD_INFO(slave)->port.aggregator;
1278
1279 if (agg &&
1280 agg->aggregator_identifier != ad_info.aggregator_id)
1281 continue;
1282 }
1283
1284 netpoll_poll_dev(slave->dev);
1285 }
1286}
1287
1288static void bond_netpoll_cleanup(struct net_device *bond_dev)
1289{
1290 struct bonding *bond = netdev_priv(bond_dev);
1291 struct list_head *iter;
1292 struct slave *slave;
1293
1294 bond_for_each_slave(bond, slave, iter)
1295 if (bond_slave_is_up(slave))
1296 slave_disable_netpoll(slave);
1297}
1298
1299static int bond_netpoll_setup(struct net_device *dev, struct netpoll_info *ni)
1300{
1301 struct bonding *bond = netdev_priv(dev);
1302 struct list_head *iter;
1303 struct slave *slave;
1304 int err = 0;
1305
1306 bond_for_each_slave(bond, slave, iter) {
1307 err = slave_enable_netpoll(slave);
1308 if (err) {
1309 bond_netpoll_cleanup(dev);
1310 break;
1311 }
1312 }
1313 return err;
1314}
1315#else
1316static inline int slave_enable_netpoll(struct slave *slave)
1317{
1318 return 0;
1319}
1320static inline void slave_disable_netpoll(struct slave *slave)
1321{
1322}
1323static void bond_netpoll_cleanup(struct net_device *bond_dev)
1324{
1325}
1326#endif
1327
1328/*---------------------------------- IOCTL ----------------------------------*/
1329
1330static netdev_features_t bond_fix_features(struct net_device *dev,
1331 netdev_features_t features)
1332{
1333 struct bonding *bond = netdev_priv(dev);
1334 struct list_head *iter;
1335 netdev_features_t mask;
1336 struct slave *slave;
1337
1338 mask = features;
1339
1340 features &= ~NETIF_F_ONE_FOR_ALL;
1341 features |= NETIF_F_ALL_FOR_ALL;
1342
1343 bond_for_each_slave(bond, slave, iter) {
1344 features = netdev_increment_features(features,
1345 slave->dev->features,
1346 mask);
1347 }
1348 features = netdev_add_tso_features(features, mask);
1349
1350 return features;
1351}
1352
1353#define BOND_VLAN_FEATURES (NETIF_F_HW_CSUM | NETIF_F_SG | \
1354 NETIF_F_FRAGLIST | NETIF_F_ALL_TSO | \
1355 NETIF_F_HIGHDMA | NETIF_F_LRO)
1356
1357#define BOND_ENC_FEATURES (NETIF_F_HW_CSUM | NETIF_F_SG | \
1358 NETIF_F_RXCSUM | NETIF_F_ALL_TSO)
1359
David Brazdil0f672f62019-12-10 10:32:29 +00001360#define BOND_MPLS_FEATURES (NETIF_F_HW_CSUM | NETIF_F_SG | \
1361 NETIF_F_ALL_TSO)
1362
Olivier Deprez157378f2022-04-04 15:47:50 +02001363
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001364static void bond_compute_features(struct bonding *bond)
1365{
1366 unsigned int dst_release_flag = IFF_XMIT_DST_RELEASE |
1367 IFF_XMIT_DST_RELEASE_PERM;
1368 netdev_features_t vlan_features = BOND_VLAN_FEATURES;
1369 netdev_features_t enc_features = BOND_ENC_FEATURES;
Olivier Deprez157378f2022-04-04 15:47:50 +02001370#ifdef CONFIG_XFRM_OFFLOAD
1371 netdev_features_t xfrm_features = BOND_XFRM_FEATURES;
1372#endif /* CONFIG_XFRM_OFFLOAD */
David Brazdil0f672f62019-12-10 10:32:29 +00001373 netdev_features_t mpls_features = BOND_MPLS_FEATURES;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001374 struct net_device *bond_dev = bond->dev;
1375 struct list_head *iter;
1376 struct slave *slave;
1377 unsigned short max_hard_header_len = ETH_HLEN;
1378 unsigned int gso_max_size = GSO_MAX_SIZE;
1379 u16 gso_max_segs = GSO_MAX_SEGS;
1380
1381 if (!bond_has_slaves(bond))
1382 goto done;
1383 vlan_features &= NETIF_F_ALL_FOR_ALL;
David Brazdil0f672f62019-12-10 10:32:29 +00001384 mpls_features &= NETIF_F_ALL_FOR_ALL;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001385
1386 bond_for_each_slave(bond, slave, iter) {
1387 vlan_features = netdev_increment_features(vlan_features,
1388 slave->dev->vlan_features, BOND_VLAN_FEATURES);
1389
1390 enc_features = netdev_increment_features(enc_features,
1391 slave->dev->hw_enc_features,
1392 BOND_ENC_FEATURES);
David Brazdil0f672f62019-12-10 10:32:29 +00001393
Olivier Deprez157378f2022-04-04 15:47:50 +02001394#ifdef CONFIG_XFRM_OFFLOAD
1395 xfrm_features = netdev_increment_features(xfrm_features,
1396 slave->dev->hw_enc_features,
1397 BOND_XFRM_FEATURES);
1398#endif /* CONFIG_XFRM_OFFLOAD */
1399
David Brazdil0f672f62019-12-10 10:32:29 +00001400 mpls_features = netdev_increment_features(mpls_features,
1401 slave->dev->mpls_features,
1402 BOND_MPLS_FEATURES);
1403
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001404 dst_release_flag &= slave->dev->priv_flags;
1405 if (slave->dev->hard_header_len > max_hard_header_len)
1406 max_hard_header_len = slave->dev->hard_header_len;
1407
1408 gso_max_size = min(gso_max_size, slave->dev->gso_max_size);
1409 gso_max_segs = min(gso_max_segs, slave->dev->gso_max_segs);
1410 }
1411 bond_dev->hard_header_len = max_hard_header_len;
1412
1413done:
1414 bond_dev->vlan_features = vlan_features;
1415 bond_dev->hw_enc_features = enc_features | NETIF_F_GSO_ENCAP_ALL |
David Brazdil0f672f62019-12-10 10:32:29 +00001416 NETIF_F_HW_VLAN_CTAG_TX |
1417 NETIF_F_HW_VLAN_STAG_TX |
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001418 NETIF_F_GSO_UDP_L4;
Olivier Deprez157378f2022-04-04 15:47:50 +02001419#ifdef CONFIG_XFRM_OFFLOAD
1420 bond_dev->hw_enc_features |= xfrm_features;
1421#endif /* CONFIG_XFRM_OFFLOAD */
David Brazdil0f672f62019-12-10 10:32:29 +00001422 bond_dev->mpls_features = mpls_features;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001423 bond_dev->gso_max_segs = gso_max_segs;
1424 netif_set_gso_max_size(bond_dev, gso_max_size);
1425
1426 bond_dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
1427 if ((bond_dev->priv_flags & IFF_XMIT_DST_RELEASE_PERM) &&
1428 dst_release_flag == (IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM))
1429 bond_dev->priv_flags |= IFF_XMIT_DST_RELEASE;
1430
1431 netdev_change_features(bond_dev);
1432}
1433
1434static void bond_setup_by_slave(struct net_device *bond_dev,
1435 struct net_device *slave_dev)
1436{
1437 bond_dev->header_ops = slave_dev->header_ops;
1438
1439 bond_dev->type = slave_dev->type;
1440 bond_dev->hard_header_len = slave_dev->hard_header_len;
Olivier Deprez0e641232021-09-23 10:07:05 +02001441 bond_dev->needed_headroom = slave_dev->needed_headroom;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001442 bond_dev->addr_len = slave_dev->addr_len;
1443
1444 memcpy(bond_dev->broadcast, slave_dev->broadcast,
1445 slave_dev->addr_len);
1446}
1447
1448/* On bonding slaves other than the currently active slave, suppress
1449 * duplicates except for alb non-mcast/bcast.
1450 */
1451static bool bond_should_deliver_exact_match(struct sk_buff *skb,
1452 struct slave *slave,
1453 struct bonding *bond)
1454{
1455 if (bond_is_slave_inactive(slave)) {
1456 if (BOND_MODE(bond) == BOND_MODE_ALB &&
1457 skb->pkt_type != PACKET_BROADCAST &&
1458 skb->pkt_type != PACKET_MULTICAST)
1459 return false;
1460 return true;
1461 }
1462 return false;
1463}
1464
1465static rx_handler_result_t bond_handle_frame(struct sk_buff **pskb)
1466{
1467 struct sk_buff *skb = *pskb;
1468 struct slave *slave;
1469 struct bonding *bond;
1470 int (*recv_probe)(const struct sk_buff *, struct bonding *,
1471 struct slave *);
1472 int ret = RX_HANDLER_ANOTHER;
1473
1474 skb = skb_share_check(skb, GFP_ATOMIC);
1475 if (unlikely(!skb))
1476 return RX_HANDLER_CONSUMED;
1477
1478 *pskb = skb;
1479
1480 slave = bond_slave_get_rcu(skb->dev);
1481 bond = slave->bond;
1482
1483 recv_probe = READ_ONCE(bond->recv_probe);
1484 if (recv_probe) {
1485 ret = recv_probe(skb, bond, slave);
1486 if (ret == RX_HANDLER_CONSUMED) {
1487 consume_skb(skb);
1488 return ret;
1489 }
1490 }
1491
David Brazdil0f672f62019-12-10 10:32:29 +00001492 /*
1493 * For packets determined by bond_should_deliver_exact_match() call to
1494 * be suppressed we want to make an exception for link-local packets.
1495 * This is necessary for e.g. LLDP daemons to be able to monitor
1496 * inactive slave links without being forced to bind to them
1497 * explicitly.
1498 *
1499 * At the same time, packets that are passed to the bonding master
1500 * (including link-local ones) can have their originating interface
1501 * determined via PACKET_ORIGDEV socket option.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001502 */
David Brazdil0f672f62019-12-10 10:32:29 +00001503 if (bond_should_deliver_exact_match(skb, slave, bond)) {
1504 if (is_link_local_ether_addr(eth_hdr(skb)->h_dest))
1505 return RX_HANDLER_PASS;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001506 return RX_HANDLER_EXACT;
David Brazdil0f672f62019-12-10 10:32:29 +00001507 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001508
1509 skb->dev = bond->dev;
1510
1511 if (BOND_MODE(bond) == BOND_MODE_ALB &&
Olivier Deprez157378f2022-04-04 15:47:50 +02001512 netif_is_bridge_port(bond->dev) &&
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001513 skb->pkt_type == PACKET_HOST) {
1514
1515 if (unlikely(skb_cow_head(skb,
1516 skb->data - skb_mac_header(skb)))) {
1517 kfree_skb(skb);
1518 return RX_HANDLER_CONSUMED;
1519 }
1520 bond_hw_addr_copy(eth_hdr(skb)->h_dest, bond->dev->dev_addr,
1521 bond->dev->addr_len);
1522 }
1523
1524 return ret;
1525}
1526
1527static enum netdev_lag_tx_type bond_lag_tx_type(struct bonding *bond)
1528{
1529 switch (BOND_MODE(bond)) {
1530 case BOND_MODE_ROUNDROBIN:
1531 return NETDEV_LAG_TX_TYPE_ROUNDROBIN;
1532 case BOND_MODE_ACTIVEBACKUP:
1533 return NETDEV_LAG_TX_TYPE_ACTIVEBACKUP;
1534 case BOND_MODE_BROADCAST:
1535 return NETDEV_LAG_TX_TYPE_BROADCAST;
1536 case BOND_MODE_XOR:
1537 case BOND_MODE_8023AD:
1538 return NETDEV_LAG_TX_TYPE_HASH;
1539 default:
1540 return NETDEV_LAG_TX_TYPE_UNKNOWN;
1541 }
1542}
1543
1544static enum netdev_lag_hash bond_lag_hash_type(struct bonding *bond,
1545 enum netdev_lag_tx_type type)
1546{
1547 if (type != NETDEV_LAG_TX_TYPE_HASH)
1548 return NETDEV_LAG_HASH_NONE;
1549
1550 switch (bond->params.xmit_policy) {
1551 case BOND_XMIT_POLICY_LAYER2:
1552 return NETDEV_LAG_HASH_L2;
1553 case BOND_XMIT_POLICY_LAYER34:
1554 return NETDEV_LAG_HASH_L34;
1555 case BOND_XMIT_POLICY_LAYER23:
1556 return NETDEV_LAG_HASH_L23;
1557 case BOND_XMIT_POLICY_ENCAP23:
1558 return NETDEV_LAG_HASH_E23;
1559 case BOND_XMIT_POLICY_ENCAP34:
1560 return NETDEV_LAG_HASH_E34;
1561 default:
1562 return NETDEV_LAG_HASH_UNKNOWN;
1563 }
1564}
1565
1566static int bond_master_upper_dev_link(struct bonding *bond, struct slave *slave,
1567 struct netlink_ext_ack *extack)
1568{
1569 struct netdev_lag_upper_info lag_upper_info;
1570 enum netdev_lag_tx_type type;
1571
1572 type = bond_lag_tx_type(bond);
1573 lag_upper_info.tx_type = type;
1574 lag_upper_info.hash_type = bond_lag_hash_type(bond, type);
1575
1576 return netdev_master_upper_dev_link(slave->dev, bond->dev, slave,
1577 &lag_upper_info, extack);
1578}
1579
1580static void bond_upper_dev_unlink(struct bonding *bond, struct slave *slave)
1581{
1582 netdev_upper_dev_unlink(slave->dev, bond->dev);
1583 slave->dev->flags &= ~IFF_SLAVE;
1584}
1585
Olivier Deprez0e641232021-09-23 10:07:05 +02001586static void slave_kobj_release(struct kobject *kobj)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001587{
Olivier Deprez0e641232021-09-23 10:07:05 +02001588 struct slave *slave = to_slave(kobj);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001589 struct bonding *bond = bond_get_bond_by_slave(slave);
1590
1591 cancel_delayed_work_sync(&slave->notify_work);
1592 if (BOND_MODE(bond) == BOND_MODE_8023AD)
1593 kfree(SLAVE_AD_INFO(slave));
1594
1595 kfree(slave);
1596}
1597
Olivier Deprez0e641232021-09-23 10:07:05 +02001598static struct kobj_type slave_ktype = {
1599 .release = slave_kobj_release,
1600#ifdef CONFIG_SYSFS
1601 .sysfs_ops = &slave_sysfs_ops,
1602#endif
1603};
1604
1605static int bond_kobj_init(struct slave *slave)
1606{
1607 int err;
1608
1609 err = kobject_init_and_add(&slave->kobj, &slave_ktype,
1610 &(slave->dev->dev.kobj), "bonding_slave");
1611 if (err)
1612 kobject_put(&slave->kobj);
1613
1614 return err;
1615}
1616
1617static struct slave *bond_alloc_slave(struct bonding *bond,
1618 struct net_device *slave_dev)
1619{
1620 struct slave *slave = NULL;
1621
1622 slave = kzalloc(sizeof(*slave), GFP_KERNEL);
1623 if (!slave)
1624 return NULL;
1625
1626 slave->bond = bond;
1627 slave->dev = slave_dev;
1628 INIT_DELAYED_WORK(&slave->notify_work, bond_netdev_notify_work);
1629
1630 if (bond_kobj_init(slave))
1631 return NULL;
1632
1633 if (BOND_MODE(bond) == BOND_MODE_8023AD) {
1634 SLAVE_AD_INFO(slave) = kzalloc(sizeof(struct ad_slave_info),
1635 GFP_KERNEL);
1636 if (!SLAVE_AD_INFO(slave)) {
1637 kobject_put(&slave->kobj);
1638 return NULL;
1639 }
1640 }
1641
1642 return slave;
1643}
1644
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001645static void bond_fill_ifbond(struct bonding *bond, struct ifbond *info)
1646{
1647 info->bond_mode = BOND_MODE(bond);
1648 info->miimon = bond->params.miimon;
1649 info->num_slaves = bond->slave_cnt;
1650}
1651
1652static void bond_fill_ifslave(struct slave *slave, struct ifslave *info)
1653{
1654 strcpy(info->slave_name, slave->dev->name);
1655 info->link = slave->link;
1656 info->state = bond_slave_state(slave);
1657 info->link_failure_count = slave->link_failure_count;
1658}
1659
1660static void bond_netdev_notify_work(struct work_struct *_work)
1661{
1662 struct slave *slave = container_of(_work, struct slave,
1663 notify_work.work);
1664
1665 if (rtnl_trylock()) {
1666 struct netdev_bonding_info binfo;
1667
1668 bond_fill_ifslave(slave, &binfo.slave);
1669 bond_fill_ifbond(slave->bond, &binfo.master);
1670 netdev_bonding_info_change(slave->dev, &binfo);
1671 rtnl_unlock();
1672 } else {
1673 queue_delayed_work(slave->bond->wq, &slave->notify_work, 1);
1674 }
1675}
1676
1677void bond_queue_slave_event(struct slave *slave)
1678{
1679 queue_delayed_work(slave->bond->wq, &slave->notify_work, 0);
1680}
1681
1682void bond_lower_state_changed(struct slave *slave)
1683{
1684 struct netdev_lag_lower_state_info info;
1685
1686 info.link_up = slave->link == BOND_LINK_UP ||
1687 slave->link == BOND_LINK_FAIL;
1688 info.tx_enabled = bond_is_active_slave(slave);
1689 netdev_lower_state_changed(slave->dev, &info);
1690}
1691
1692/* enslave device <slave> to bond device <master> */
1693int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev,
1694 struct netlink_ext_ack *extack)
1695{
1696 struct bonding *bond = netdev_priv(bond_dev);
1697 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
1698 struct slave *new_slave = NULL, *prev_slave;
1699 struct sockaddr_storage ss;
1700 int link_reporting;
1701 int res = 0, i;
1702
1703 if (!bond->params.use_carrier &&
1704 slave_dev->ethtool_ops->get_link == NULL &&
1705 slave_ops->ndo_do_ioctl == NULL) {
David Brazdil0f672f62019-12-10 10:32:29 +00001706 slave_warn(bond_dev, slave_dev, "no link monitoring support\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001707 }
1708
1709 /* already in-use? */
1710 if (netdev_is_rx_handler_busy(slave_dev)) {
1711 NL_SET_ERR_MSG(extack, "Device is in use and cannot be enslaved");
David Brazdil0f672f62019-12-10 10:32:29 +00001712 slave_err(bond_dev, slave_dev,
1713 "Error: Device is in use and cannot be enslaved\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001714 return -EBUSY;
1715 }
1716
1717 if (bond_dev == slave_dev) {
1718 NL_SET_ERR_MSG(extack, "Cannot enslave bond to itself.");
1719 netdev_err(bond_dev, "cannot enslave bond to itself.\n");
1720 return -EPERM;
1721 }
1722
1723 /* vlan challenged mutual exclusion */
1724 /* no need to lock since we're protected by rtnl_lock */
1725 if (slave_dev->features & NETIF_F_VLAN_CHALLENGED) {
David Brazdil0f672f62019-12-10 10:32:29 +00001726 slave_dbg(bond_dev, slave_dev, "is NETIF_F_VLAN_CHALLENGED\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001727 if (vlan_uses_dev(bond_dev)) {
1728 NL_SET_ERR_MSG(extack, "Can not enslave VLAN challenged device to VLAN enabled bond");
David Brazdil0f672f62019-12-10 10:32:29 +00001729 slave_err(bond_dev, slave_dev, "Error: cannot enslave VLAN challenged slave on VLAN enabled bond\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001730 return -EPERM;
1731 } else {
David Brazdil0f672f62019-12-10 10:32:29 +00001732 slave_warn(bond_dev, slave_dev, "enslaved VLAN challenged slave. Adding VLANs will be blocked as long as it is part of bond.\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001733 }
1734 } else {
David Brazdil0f672f62019-12-10 10:32:29 +00001735 slave_dbg(bond_dev, slave_dev, "is !NETIF_F_VLAN_CHALLENGED\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001736 }
1737
Olivier Deprez157378f2022-04-04 15:47:50 +02001738 if (slave_dev->features & NETIF_F_HW_ESP)
1739 slave_dbg(bond_dev, slave_dev, "is esp-hw-offload capable\n");
1740
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001741 /* Old ifenslave binaries are no longer supported. These can
1742 * be identified with moderate accuracy by the state of the slave:
1743 * the current ifenslave will set the interface down prior to
1744 * enslaving it; the old ifenslave will not.
1745 */
1746 if (slave_dev->flags & IFF_UP) {
1747 NL_SET_ERR_MSG(extack, "Device can not be enslaved while up");
David Brazdil0f672f62019-12-10 10:32:29 +00001748 slave_err(bond_dev, slave_dev, "slave is up - this may be due to an out of date ifenslave\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001749 return -EPERM;
1750 }
1751
1752 /* set bonding device ether type by slave - bonding netdevices are
1753 * created with ether_setup, so when the slave type is not ARPHRD_ETHER
1754 * there is a need to override some of the type dependent attribs/funcs.
1755 *
1756 * bond ether type mutual exclusion - don't allow slaves of dissimilar
1757 * ether type (eg ARPHRD_ETHER and ARPHRD_INFINIBAND) share the same bond
1758 */
1759 if (!bond_has_slaves(bond)) {
1760 if (bond_dev->type != slave_dev->type) {
David Brazdil0f672f62019-12-10 10:32:29 +00001761 slave_dbg(bond_dev, slave_dev, "change device type from %d to %d\n",
1762 bond_dev->type, slave_dev->type);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001763
1764 res = call_netdevice_notifiers(NETDEV_PRE_TYPE_CHANGE,
1765 bond_dev);
1766 res = notifier_to_errno(res);
1767 if (res) {
David Brazdil0f672f62019-12-10 10:32:29 +00001768 slave_err(bond_dev, slave_dev, "refused to change device type\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001769 return -EBUSY;
1770 }
1771
1772 /* Flush unicast and multicast addresses */
1773 dev_uc_flush(bond_dev);
1774 dev_mc_flush(bond_dev);
1775
1776 if (slave_dev->type != ARPHRD_ETHER)
1777 bond_setup_by_slave(bond_dev, slave_dev);
1778 else {
1779 ether_setup(bond_dev);
1780 bond_dev->priv_flags &= ~IFF_TX_SKB_SHARING;
1781 }
1782
1783 call_netdevice_notifiers(NETDEV_POST_TYPE_CHANGE,
1784 bond_dev);
1785 }
1786 } else if (bond_dev->type != slave_dev->type) {
1787 NL_SET_ERR_MSG(extack, "Device type is different from other slaves");
David Brazdil0f672f62019-12-10 10:32:29 +00001788 slave_err(bond_dev, slave_dev, "ether type (%d) is different from other slaves (%d), can not enslave it\n",
1789 slave_dev->type, bond_dev->type);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001790 return -EINVAL;
1791 }
1792
1793 if (slave_dev->type == ARPHRD_INFINIBAND &&
1794 BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP) {
1795 NL_SET_ERR_MSG(extack, "Only active-backup mode is supported for infiniband slaves");
David Brazdil0f672f62019-12-10 10:32:29 +00001796 slave_warn(bond_dev, slave_dev, "Type (%d) supports only active-backup mode\n",
1797 slave_dev->type);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001798 res = -EOPNOTSUPP;
1799 goto err_undo_flags;
1800 }
1801
1802 if (!slave_ops->ndo_set_mac_address ||
1803 slave_dev->type == ARPHRD_INFINIBAND) {
David Brazdil0f672f62019-12-10 10:32:29 +00001804 slave_warn(bond_dev, slave_dev, "The slave device specified does not support setting the MAC address\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001805 if (BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP &&
1806 bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
1807 if (!bond_has_slaves(bond)) {
1808 bond->params.fail_over_mac = BOND_FOM_ACTIVE;
David Brazdil0f672f62019-12-10 10:32:29 +00001809 slave_warn(bond_dev, slave_dev, "Setting fail_over_mac to active for active-backup mode\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001810 } else {
1811 NL_SET_ERR_MSG(extack, "Slave device does not support setting the MAC address, but fail_over_mac is not set to active");
David Brazdil0f672f62019-12-10 10:32:29 +00001812 slave_err(bond_dev, slave_dev, "The slave device specified does not support setting the MAC address, but fail_over_mac is not set to active\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001813 res = -EOPNOTSUPP;
1814 goto err_undo_flags;
1815 }
1816 }
1817 }
1818
1819 call_netdevice_notifiers(NETDEV_JOIN, slave_dev);
1820
1821 /* If this is the first slave, then we need to set the master's hardware
1822 * address to be the same as the slave's.
1823 */
1824 if (!bond_has_slaves(bond) &&
David Brazdil0f672f62019-12-10 10:32:29 +00001825 bond->dev->addr_assign_type == NET_ADDR_RANDOM) {
1826 res = bond_set_dev_addr(bond->dev, slave_dev);
1827 if (res)
1828 goto err_undo_flags;
1829 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001830
Olivier Deprez0e641232021-09-23 10:07:05 +02001831 new_slave = bond_alloc_slave(bond, slave_dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001832 if (!new_slave) {
1833 res = -ENOMEM;
1834 goto err_undo_flags;
1835 }
1836
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001837 /* Set the new_slave's queue_id to be zero. Queue ID mapping
1838 * is set via sysfs or module option if desired.
1839 */
1840 new_slave->queue_id = 0;
1841
1842 /* Save slave's original mtu and then set it to match the bond */
1843 new_slave->original_mtu = slave_dev->mtu;
1844 res = dev_set_mtu(slave_dev, bond->dev->mtu);
1845 if (res) {
David Brazdil0f672f62019-12-10 10:32:29 +00001846 slave_err(bond_dev, slave_dev, "Error %d calling dev_set_mtu\n", res);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001847 goto err_free;
1848 }
1849
1850 /* Save slave's original ("permanent") mac address for modes
1851 * that need it, and for restoring it upon release, and then
1852 * set it to the master's address
1853 */
1854 bond_hw_addr_copy(new_slave->perm_hwaddr, slave_dev->dev_addr,
1855 slave_dev->addr_len);
1856
1857 if (!bond->params.fail_over_mac ||
1858 BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP) {
1859 /* Set slave to master's mac address. The application already
1860 * set the master's mac address to that of the first slave
1861 */
1862 memcpy(ss.__data, bond_dev->dev_addr, bond_dev->addr_len);
1863 ss.ss_family = slave_dev->type;
David Brazdil0f672f62019-12-10 10:32:29 +00001864 res = dev_set_mac_address(slave_dev, (struct sockaddr *)&ss,
1865 extack);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001866 if (res) {
David Brazdil0f672f62019-12-10 10:32:29 +00001867 slave_err(bond_dev, slave_dev, "Error %d calling set_mac_address\n", res);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001868 goto err_restore_mtu;
1869 }
1870 }
1871
1872 /* set slave flag before open to prevent IPv6 addrconf */
1873 slave_dev->flags |= IFF_SLAVE;
1874
1875 /* open the slave since the application closed it */
David Brazdil0f672f62019-12-10 10:32:29 +00001876 res = dev_open(slave_dev, extack);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001877 if (res) {
David Brazdil0f672f62019-12-10 10:32:29 +00001878 slave_err(bond_dev, slave_dev, "Opening slave failed\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001879 goto err_restore_mac;
1880 }
1881
1882 slave_dev->priv_flags |= IFF_BONDING;
1883 /* initialize slave stats */
1884 dev_get_stats(new_slave->dev, &new_slave->slave_stats);
1885
1886 if (bond_is_lb(bond)) {
1887 /* bond_alb_init_slave() must be called before all other stages since
1888 * it might fail and we do not want to have to undo everything
1889 */
1890 res = bond_alb_init_slave(bond, new_slave);
1891 if (res)
1892 goto err_close;
1893 }
1894
1895 res = vlan_vids_add_by_dev(slave_dev, bond_dev);
1896 if (res) {
David Brazdil0f672f62019-12-10 10:32:29 +00001897 slave_err(bond_dev, slave_dev, "Couldn't add bond vlan ids\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001898 goto err_close;
1899 }
1900
1901 prev_slave = bond_last_slave(bond);
1902
1903 new_slave->delay = 0;
1904 new_slave->link_failure_count = 0;
1905
1906 if (bond_update_speed_duplex(new_slave) &&
1907 bond_needs_speed_duplex(bond))
1908 new_slave->link = BOND_LINK_DOWN;
1909
1910 new_slave->last_rx = jiffies -
1911 (msecs_to_jiffies(bond->params.arp_interval) + 1);
1912 for (i = 0; i < BOND_MAX_ARP_TARGETS; i++)
1913 new_slave->target_last_arp_rx[i] = new_slave->last_rx;
1914
1915 if (bond->params.miimon && !bond->params.use_carrier) {
1916 link_reporting = bond_check_dev_link(bond, slave_dev, 1);
1917
1918 if ((link_reporting == -1) && !bond->params.arp_interval) {
1919 /* miimon is set but a bonded network driver
1920 * does not support ETHTOOL/MII and
1921 * arp_interval is not set. Note: if
1922 * use_carrier is enabled, we will never go
1923 * here (because netif_carrier is always
1924 * supported); thus, we don't need to change
1925 * the messages for netif_carrier.
1926 */
David Brazdil0f672f62019-12-10 10:32:29 +00001927 slave_warn(bond_dev, slave_dev, "MII and ETHTOOL support not available for slave, and arp_interval/arp_ip_target module parameters not specified, thus bonding will not detect link failures! see bonding.txt for details\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001928 } else if (link_reporting == -1) {
1929 /* unable get link status using mii/ethtool */
David Brazdil0f672f62019-12-10 10:32:29 +00001930 slave_warn(bond_dev, slave_dev, "can't get link status from slave; the network driver associated with this interface does not support MII or ETHTOOL link status reporting, thus miimon has no effect on this interface\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001931 }
1932 }
1933
1934 /* check for initial state */
1935 new_slave->link = BOND_LINK_NOCHANGE;
1936 if (bond->params.miimon) {
1937 if (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS) {
1938 if (bond->params.updelay) {
1939 bond_set_slave_link_state(new_slave,
1940 BOND_LINK_BACK,
1941 BOND_SLAVE_NOTIFY_NOW);
1942 new_slave->delay = bond->params.updelay;
1943 } else {
1944 bond_set_slave_link_state(new_slave,
1945 BOND_LINK_UP,
1946 BOND_SLAVE_NOTIFY_NOW);
1947 }
1948 } else {
1949 bond_set_slave_link_state(new_slave, BOND_LINK_DOWN,
1950 BOND_SLAVE_NOTIFY_NOW);
1951 }
1952 } else if (bond->params.arp_interval) {
1953 bond_set_slave_link_state(new_slave,
1954 (netif_carrier_ok(slave_dev) ?
1955 BOND_LINK_UP : BOND_LINK_DOWN),
1956 BOND_SLAVE_NOTIFY_NOW);
1957 } else {
1958 bond_set_slave_link_state(new_slave, BOND_LINK_UP,
1959 BOND_SLAVE_NOTIFY_NOW);
1960 }
1961
1962 if (new_slave->link != BOND_LINK_DOWN)
1963 new_slave->last_link_up = jiffies;
David Brazdil0f672f62019-12-10 10:32:29 +00001964 slave_dbg(bond_dev, slave_dev, "Initial state of slave is BOND_LINK_%s\n",
1965 new_slave->link == BOND_LINK_DOWN ? "DOWN" :
1966 (new_slave->link == BOND_LINK_UP ? "UP" : "BACK"));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001967
1968 if (bond_uses_primary(bond) && bond->params.primary[0]) {
1969 /* if there is a primary slave, remember it */
1970 if (strcmp(bond->params.primary, new_slave->dev->name) == 0) {
1971 rcu_assign_pointer(bond->primary_slave, new_slave);
1972 bond->force_primary = true;
1973 }
1974 }
1975
1976 switch (BOND_MODE(bond)) {
1977 case BOND_MODE_ACTIVEBACKUP:
1978 bond_set_slave_inactive_flags(new_slave,
1979 BOND_SLAVE_NOTIFY_NOW);
1980 break;
1981 case BOND_MODE_8023AD:
1982 /* in 802.3ad mode, the internal mechanism
1983 * will activate the slaves in the selected
1984 * aggregator
1985 */
1986 bond_set_slave_inactive_flags(new_slave, BOND_SLAVE_NOTIFY_NOW);
1987 /* if this is the first slave */
1988 if (!prev_slave) {
1989 SLAVE_AD_INFO(new_slave)->id = 1;
1990 /* Initialize AD with the number of times that the AD timer is called in 1 second
1991 * can be called only after the mac address of the bond is set
1992 */
1993 bond_3ad_initialize(bond, 1000/AD_TIMER_INTERVAL);
1994 } else {
1995 SLAVE_AD_INFO(new_slave)->id =
1996 SLAVE_AD_INFO(prev_slave)->id + 1;
1997 }
1998
1999 bond_3ad_bind_slave(new_slave);
2000 break;
2001 case BOND_MODE_TLB:
2002 case BOND_MODE_ALB:
2003 bond_set_active_slave(new_slave);
2004 bond_set_slave_inactive_flags(new_slave, BOND_SLAVE_NOTIFY_NOW);
2005 break;
2006 default:
David Brazdil0f672f62019-12-10 10:32:29 +00002007 slave_dbg(bond_dev, slave_dev, "This slave is always active in trunk mode\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002008
2009 /* always active in trunk mode */
2010 bond_set_active_slave(new_slave);
2011
2012 /* In trunking mode there is little meaning to curr_active_slave
2013 * anyway (it holds no special properties of the bond device),
2014 * so we can change it without calling change_active_interface()
2015 */
2016 if (!rcu_access_pointer(bond->curr_active_slave) &&
2017 new_slave->link == BOND_LINK_UP)
2018 rcu_assign_pointer(bond->curr_active_slave, new_slave);
2019
2020 break;
2021 } /* switch(bond_mode) */
2022
2023#ifdef CONFIG_NET_POLL_CONTROLLER
2024 if (bond->dev->npinfo) {
2025 if (slave_enable_netpoll(new_slave)) {
David Brazdil0f672f62019-12-10 10:32:29 +00002026 slave_info(bond_dev, slave_dev, "master_dev is using netpoll, but new slave device does not support netpoll\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002027 res = -EBUSY;
2028 goto err_detach;
2029 }
2030 }
2031#endif
2032
2033 if (!(bond_dev->features & NETIF_F_LRO))
2034 dev_disable_lro(slave_dev);
2035
2036 res = netdev_rx_handler_register(slave_dev, bond_handle_frame,
2037 new_slave);
2038 if (res) {
David Brazdil0f672f62019-12-10 10:32:29 +00002039 slave_dbg(bond_dev, slave_dev, "Error %d calling netdev_rx_handler_register\n", res);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002040 goto err_detach;
2041 }
2042
2043 res = bond_master_upper_dev_link(bond, new_slave, extack);
2044 if (res) {
David Brazdil0f672f62019-12-10 10:32:29 +00002045 slave_dbg(bond_dev, slave_dev, "Error %d calling bond_master_upper_dev_link\n", res);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002046 goto err_unregister;
2047 }
2048
2049 res = bond_sysfs_slave_add(new_slave);
2050 if (res) {
David Brazdil0f672f62019-12-10 10:32:29 +00002051 slave_dbg(bond_dev, slave_dev, "Error %d calling bond_sysfs_slave_add\n", res);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002052 goto err_upper_unlink;
2053 }
2054
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002055 /* If the mode uses primary, then the following is handled by
2056 * bond_change_active_slave().
2057 */
2058 if (!bond_uses_primary(bond)) {
2059 /* set promiscuity level to new slave */
2060 if (bond_dev->flags & IFF_PROMISC) {
2061 res = dev_set_promiscuity(slave_dev, 1);
2062 if (res)
2063 goto err_sysfs_del;
2064 }
2065
2066 /* set allmulti level to new slave */
2067 if (bond_dev->flags & IFF_ALLMULTI) {
2068 res = dev_set_allmulti(slave_dev, 1);
2069 if (res) {
2070 if (bond_dev->flags & IFF_PROMISC)
2071 dev_set_promiscuity(slave_dev, -1);
2072 goto err_sysfs_del;
2073 }
2074 }
2075
2076 netif_addr_lock_bh(bond_dev);
2077 dev_mc_sync_multiple(slave_dev, bond_dev);
2078 dev_uc_sync_multiple(slave_dev, bond_dev);
2079 netif_addr_unlock_bh(bond_dev);
2080
2081 if (BOND_MODE(bond) == BOND_MODE_8023AD) {
2082 /* add lacpdu mc addr to mc list */
2083 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
2084
2085 dev_mc_add(slave_dev, lacpdu_multicast);
2086 }
2087 }
2088
2089 bond->slave_cnt++;
2090 bond_compute_features(bond);
2091 bond_set_carrier(bond);
2092
2093 if (bond_uses_primary(bond)) {
2094 block_netpoll_tx();
2095 bond_select_active_slave(bond);
2096 unblock_netpoll_tx();
2097 }
2098
2099 if (bond_mode_can_use_xmit_hash(bond))
2100 bond_update_slave_arr(bond, NULL);
2101
2102
David Brazdil0f672f62019-12-10 10:32:29 +00002103 slave_info(bond_dev, slave_dev, "Enslaving as %s interface with %s link\n",
2104 bond_is_active_slave(new_slave) ? "an active" : "a backup",
2105 new_slave->link != BOND_LINK_DOWN ? "an up" : "a down");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002106
2107 /* enslave is successful */
2108 bond_queue_slave_event(new_slave);
2109 return 0;
2110
2111/* Undo stages on error */
2112err_sysfs_del:
2113 bond_sysfs_slave_del(new_slave);
2114
2115err_upper_unlink:
2116 bond_upper_dev_unlink(bond, new_slave);
2117
2118err_unregister:
2119 netdev_rx_handler_unregister(slave_dev);
2120
2121err_detach:
2122 vlan_vids_del_by_dev(slave_dev, bond_dev);
2123 if (rcu_access_pointer(bond->primary_slave) == new_slave)
2124 RCU_INIT_POINTER(bond->primary_slave, NULL);
2125 if (rcu_access_pointer(bond->curr_active_slave) == new_slave) {
2126 block_netpoll_tx();
2127 bond_change_active_slave(bond, NULL);
2128 bond_select_active_slave(bond);
2129 unblock_netpoll_tx();
2130 }
2131 /* either primary_slave or curr_active_slave might've changed */
2132 synchronize_rcu();
2133 slave_disable_netpoll(new_slave);
2134
2135err_close:
David Brazdil0f672f62019-12-10 10:32:29 +00002136 if (!netif_is_bond_master(slave_dev))
2137 slave_dev->priv_flags &= ~IFF_BONDING;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002138 dev_close(slave_dev);
2139
2140err_restore_mac:
2141 slave_dev->flags &= ~IFF_SLAVE;
2142 if (!bond->params.fail_over_mac ||
2143 BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP) {
2144 /* XXX TODO - fom follow mode needs to change master's
2145 * MAC if this slave's MAC is in use by the bond, or at
2146 * least print a warning.
2147 */
2148 bond_hw_addr_copy(ss.__data, new_slave->perm_hwaddr,
2149 new_slave->dev->addr_len);
2150 ss.ss_family = slave_dev->type;
David Brazdil0f672f62019-12-10 10:32:29 +00002151 dev_set_mac_address(slave_dev, (struct sockaddr *)&ss, NULL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002152 }
2153
2154err_restore_mtu:
2155 dev_set_mtu(slave_dev, new_slave->original_mtu);
2156
2157err_free:
Olivier Deprez0e641232021-09-23 10:07:05 +02002158 kobject_put(&new_slave->kobj);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002159
2160err_undo_flags:
2161 /* Enslave of first slave has failed and we need to fix master's mac */
2162 if (!bond_has_slaves(bond)) {
2163 if (ether_addr_equal_64bits(bond_dev->dev_addr,
2164 slave_dev->dev_addr))
2165 eth_hw_addr_random(bond_dev);
2166 if (bond_dev->type != ARPHRD_ETHER) {
2167 dev_close(bond_dev);
2168 ether_setup(bond_dev);
2169 bond_dev->flags |= IFF_MASTER;
2170 bond_dev->priv_flags &= ~IFF_TX_SKB_SHARING;
2171 }
2172 }
2173
2174 return res;
2175}
2176
2177/* Try to release the slave device <slave> from the bond device <master>
2178 * It is legal to access curr_active_slave without a lock because all the function
2179 * is RTNL-locked. If "all" is true it means that the function is being called
2180 * while destroying a bond interface and all slaves are being released.
2181 *
2182 * The rules for slave state should be:
2183 * for Active/Backup:
2184 * Active stays on all backups go down
2185 * for Bonded connections:
2186 * The first up interface should be left on and all others downed.
2187 */
2188static int __bond_release_one(struct net_device *bond_dev,
2189 struct net_device *slave_dev,
2190 bool all, bool unregister)
2191{
2192 struct bonding *bond = netdev_priv(bond_dev);
2193 struct slave *slave, *oldcurrent;
2194 struct sockaddr_storage ss;
2195 int old_flags = bond_dev->flags;
2196 netdev_features_t old_features = bond_dev->features;
2197
2198 /* slave is not a slave or master is not master of this slave */
2199 if (!(slave_dev->flags & IFF_SLAVE) ||
2200 !netdev_has_upper_dev(slave_dev, bond_dev)) {
David Brazdil0f672f62019-12-10 10:32:29 +00002201 slave_dbg(bond_dev, slave_dev, "cannot release slave\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002202 return -EINVAL;
2203 }
2204
2205 block_netpoll_tx();
2206
2207 slave = bond_get_slave_by_dev(bond, slave_dev);
2208 if (!slave) {
2209 /* not a slave of this bond */
David Brazdil0f672f62019-12-10 10:32:29 +00002210 slave_info(bond_dev, slave_dev, "interface not enslaved\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002211 unblock_netpoll_tx();
2212 return -EINVAL;
2213 }
2214
2215 bond_set_slave_inactive_flags(slave, BOND_SLAVE_NOTIFY_NOW);
2216
2217 bond_sysfs_slave_del(slave);
2218
2219 /* recompute stats just before removing the slave */
2220 bond_get_stats(bond->dev, &bond->bond_stats);
2221
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002222 /* unregister rx_handler early so bond_handle_frame wouldn't be called
2223 * for this slave anymore.
2224 */
2225 netdev_rx_handler_unregister(slave_dev);
2226
2227 if (BOND_MODE(bond) == BOND_MODE_8023AD)
2228 bond_3ad_unbind_slave(slave);
2229
Olivier Deprez0e641232021-09-23 10:07:05 +02002230 bond_upper_dev_unlink(bond, slave);
2231
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002232 if (bond_mode_can_use_xmit_hash(bond))
2233 bond_update_slave_arr(bond, slave);
2234
David Brazdil0f672f62019-12-10 10:32:29 +00002235 slave_info(bond_dev, slave_dev, "Releasing %s interface\n",
2236 bond_is_active_slave(slave) ? "active" : "backup");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002237
2238 oldcurrent = rcu_access_pointer(bond->curr_active_slave);
2239
2240 RCU_INIT_POINTER(bond->current_arp_slave, NULL);
2241
2242 if (!all && (!bond->params.fail_over_mac ||
2243 BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP)) {
2244 if (ether_addr_equal_64bits(bond_dev->dev_addr, slave->perm_hwaddr) &&
2245 bond_has_slaves(bond))
David Brazdil0f672f62019-12-10 10:32:29 +00002246 slave_warn(bond_dev, slave_dev, "the permanent HWaddr of slave - %pM - is still in use by bond - set the HWaddr of slave to a different address to avoid conflicts\n",
2247 slave->perm_hwaddr);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002248 }
2249
2250 if (rtnl_dereference(bond->primary_slave) == slave)
2251 RCU_INIT_POINTER(bond->primary_slave, NULL);
2252
2253 if (oldcurrent == slave)
2254 bond_change_active_slave(bond, NULL);
2255
2256 if (bond_is_lb(bond)) {
2257 /* Must be called only after the slave has been
2258 * detached from the list and the curr_active_slave
2259 * has been cleared (if our_slave == old_current),
2260 * but before a new active slave is selected.
2261 */
2262 bond_alb_deinit_slave(bond, slave);
2263 }
2264
2265 if (all) {
2266 RCU_INIT_POINTER(bond->curr_active_slave, NULL);
2267 } else if (oldcurrent == slave) {
2268 /* Note that we hold RTNL over this sequence, so there
2269 * is no concern that another slave add/remove event
2270 * will interfere.
2271 */
2272 bond_select_active_slave(bond);
2273 }
2274
Olivier Deprez157378f2022-04-04 15:47:50 +02002275 bond_set_carrier(bond);
2276 if (!bond_has_slaves(bond))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002277 eth_hw_addr_random(bond_dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002278
2279 unblock_netpoll_tx();
2280 synchronize_rcu();
2281 bond->slave_cnt--;
2282
2283 if (!bond_has_slaves(bond)) {
2284 call_netdevice_notifiers(NETDEV_CHANGEADDR, bond->dev);
2285 call_netdevice_notifiers(NETDEV_RELEASE, bond->dev);
2286 }
2287
2288 bond_compute_features(bond);
2289 if (!(bond_dev->features & NETIF_F_VLAN_CHALLENGED) &&
2290 (old_features & NETIF_F_VLAN_CHALLENGED))
David Brazdil0f672f62019-12-10 10:32:29 +00002291 slave_info(bond_dev, slave_dev, "last VLAN challenged slave left bond - VLAN blocking is removed\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002292
2293 vlan_vids_del_by_dev(slave_dev, bond_dev);
2294
2295 /* If the mode uses primary, then this case was handled above by
2296 * bond_change_active_slave(..., NULL)
2297 */
2298 if (!bond_uses_primary(bond)) {
2299 /* unset promiscuity level from slave
2300 * NOTE: The NETDEV_CHANGEADDR call above may change the value
2301 * of the IFF_PROMISC flag in the bond_dev, but we need the
2302 * value of that flag before that change, as that was the value
2303 * when this slave was attached, so we cache at the start of the
2304 * function and use it here. Same goes for ALLMULTI below
2305 */
2306 if (old_flags & IFF_PROMISC)
2307 dev_set_promiscuity(slave_dev, -1);
2308
2309 /* unset allmulti level from slave */
2310 if (old_flags & IFF_ALLMULTI)
2311 dev_set_allmulti(slave_dev, -1);
2312
2313 bond_hw_addr_flush(bond_dev, slave_dev);
2314 }
2315
2316 slave_disable_netpoll(slave);
2317
2318 /* close slave before restoring its mac address */
2319 dev_close(slave_dev);
2320
2321 if (bond->params.fail_over_mac != BOND_FOM_ACTIVE ||
2322 BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP) {
2323 /* restore original ("permanent") mac address */
2324 bond_hw_addr_copy(ss.__data, slave->perm_hwaddr,
2325 slave->dev->addr_len);
2326 ss.ss_family = slave_dev->type;
David Brazdil0f672f62019-12-10 10:32:29 +00002327 dev_set_mac_address(slave_dev, (struct sockaddr *)&ss, NULL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002328 }
2329
2330 if (unregister)
2331 __dev_set_mtu(slave_dev, slave->original_mtu);
2332 else
2333 dev_set_mtu(slave_dev, slave->original_mtu);
2334
David Brazdil0f672f62019-12-10 10:32:29 +00002335 if (!netif_is_bond_master(slave_dev))
2336 slave_dev->priv_flags &= ~IFF_BONDING;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002337
Olivier Deprez0e641232021-09-23 10:07:05 +02002338 kobject_put(&slave->kobj);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002339
2340 return 0;
2341}
2342
2343/* A wrapper used because of ndo_del_link */
2344int bond_release(struct net_device *bond_dev, struct net_device *slave_dev)
2345{
2346 return __bond_release_one(bond_dev, slave_dev, false, false);
2347}
2348
2349/* First release a slave and then destroy the bond if no more slaves are left.
2350 * Must be under rtnl_lock when this function is called.
2351 */
David Brazdil0f672f62019-12-10 10:32:29 +00002352static int bond_release_and_destroy(struct net_device *bond_dev,
2353 struct net_device *slave_dev)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002354{
2355 struct bonding *bond = netdev_priv(bond_dev);
2356 int ret;
2357
2358 ret = __bond_release_one(bond_dev, slave_dev, false, true);
Olivier Deprez0e641232021-09-23 10:07:05 +02002359 if (ret == 0 && !bond_has_slaves(bond) &&
2360 bond_dev->reg_state != NETREG_UNREGISTERING) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002361 bond_dev->priv_flags |= IFF_DISABLE_NETPOLL;
David Brazdil0f672f62019-12-10 10:32:29 +00002362 netdev_info(bond_dev, "Destroying bond\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002363 bond_remove_proc_entry(bond);
2364 unregister_netdevice(bond_dev);
2365 }
2366 return ret;
2367}
2368
2369static void bond_info_query(struct net_device *bond_dev, struct ifbond *info)
2370{
2371 struct bonding *bond = netdev_priv(bond_dev);
2372 bond_fill_ifbond(bond, info);
2373}
2374
2375static int bond_slave_info_query(struct net_device *bond_dev, struct ifslave *info)
2376{
2377 struct bonding *bond = netdev_priv(bond_dev);
2378 struct list_head *iter;
2379 int i = 0, res = -ENODEV;
2380 struct slave *slave;
2381
2382 bond_for_each_slave(bond, slave, iter) {
2383 if (i++ == (int)info->slave_id) {
2384 res = 0;
2385 bond_fill_ifslave(slave, info);
2386 break;
2387 }
2388 }
2389
2390 return res;
2391}
2392
2393/*-------------------------------- Monitoring -------------------------------*/
2394
2395/* called with rcu_read_lock() */
2396static int bond_miimon_inspect(struct bonding *bond)
2397{
2398 int link_state, commit = 0;
2399 struct list_head *iter;
2400 struct slave *slave;
2401 bool ignore_updelay;
2402
2403 ignore_updelay = !rcu_dereference(bond->curr_active_slave);
2404
2405 bond_for_each_slave_rcu(bond, slave, iter) {
David Brazdil0f672f62019-12-10 10:32:29 +00002406 bond_propose_link_state(slave, BOND_LINK_NOCHANGE);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002407
2408 link_state = bond_check_dev_link(bond, slave->dev, 0);
2409
2410 switch (slave->link) {
2411 case BOND_LINK_UP:
2412 if (link_state)
2413 continue;
2414
2415 bond_propose_link_state(slave, BOND_LINK_FAIL);
2416 commit++;
2417 slave->delay = bond->params.downdelay;
2418 if (slave->delay) {
David Brazdil0f672f62019-12-10 10:32:29 +00002419 slave_info(bond->dev, slave->dev, "link status down for %sinterface, disabling it in %d ms\n",
2420 (BOND_MODE(bond) ==
2421 BOND_MODE_ACTIVEBACKUP) ?
2422 (bond_is_active_slave(slave) ?
2423 "active " : "backup ") : "",
2424 bond->params.downdelay * bond->params.miimon);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002425 }
Olivier Deprez157378f2022-04-04 15:47:50 +02002426 fallthrough;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002427 case BOND_LINK_FAIL:
2428 if (link_state) {
2429 /* recovered before downdelay expired */
2430 bond_propose_link_state(slave, BOND_LINK_UP);
2431 slave->last_link_up = jiffies;
David Brazdil0f672f62019-12-10 10:32:29 +00002432 slave_info(bond->dev, slave->dev, "link status up again after %d ms\n",
2433 (bond->params.downdelay - slave->delay) *
2434 bond->params.miimon);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002435 commit++;
2436 continue;
2437 }
2438
2439 if (slave->delay <= 0) {
David Brazdil0f672f62019-12-10 10:32:29 +00002440 bond_propose_link_state(slave, BOND_LINK_DOWN);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002441 commit++;
2442 continue;
2443 }
2444
2445 slave->delay--;
2446 break;
2447
2448 case BOND_LINK_DOWN:
2449 if (!link_state)
2450 continue;
2451
2452 bond_propose_link_state(slave, BOND_LINK_BACK);
2453 commit++;
2454 slave->delay = bond->params.updelay;
2455
2456 if (slave->delay) {
David Brazdil0f672f62019-12-10 10:32:29 +00002457 slave_info(bond->dev, slave->dev, "link status up, enabling it in %d ms\n",
2458 ignore_updelay ? 0 :
2459 bond->params.updelay *
2460 bond->params.miimon);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002461 }
Olivier Deprez157378f2022-04-04 15:47:50 +02002462 fallthrough;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002463 case BOND_LINK_BACK:
2464 if (!link_state) {
2465 bond_propose_link_state(slave, BOND_LINK_DOWN);
David Brazdil0f672f62019-12-10 10:32:29 +00002466 slave_info(bond->dev, slave->dev, "link status down again after %d ms\n",
2467 (bond->params.updelay - slave->delay) *
2468 bond->params.miimon);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002469 commit++;
2470 continue;
2471 }
2472
2473 if (ignore_updelay)
2474 slave->delay = 0;
2475
2476 if (slave->delay <= 0) {
David Brazdil0f672f62019-12-10 10:32:29 +00002477 bond_propose_link_state(slave, BOND_LINK_UP);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002478 commit++;
2479 ignore_updelay = false;
2480 continue;
2481 }
2482
2483 slave->delay--;
2484 break;
2485 }
2486 }
2487
2488 return commit;
2489}
2490
2491static void bond_miimon_link_change(struct bonding *bond,
2492 struct slave *slave,
2493 char link)
2494{
2495 switch (BOND_MODE(bond)) {
2496 case BOND_MODE_8023AD:
2497 bond_3ad_handle_link_change(slave, link);
2498 break;
2499 case BOND_MODE_TLB:
2500 case BOND_MODE_ALB:
2501 bond_alb_handle_link_change(bond, slave, link);
2502 break;
2503 case BOND_MODE_XOR:
2504 bond_update_slave_arr(bond, NULL);
2505 break;
2506 }
2507}
2508
2509static void bond_miimon_commit(struct bonding *bond)
2510{
2511 struct list_head *iter;
2512 struct slave *slave, *primary;
2513
2514 bond_for_each_slave(bond, slave, iter) {
David Brazdil0f672f62019-12-10 10:32:29 +00002515 switch (slave->link_new_state) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002516 case BOND_LINK_NOCHANGE:
David Brazdil0f672f62019-12-10 10:32:29 +00002517 /* For 802.3ad mode, check current slave speed and
2518 * duplex again in case its port was disabled after
2519 * invalid speed/duplex reporting but recovered before
2520 * link monitoring could make a decision on the actual
2521 * link status
2522 */
2523 if (BOND_MODE(bond) == BOND_MODE_8023AD &&
2524 slave->link == BOND_LINK_UP)
2525 bond_3ad_adapter_speed_duplex_changed(slave);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002526 continue;
2527
2528 case BOND_LINK_UP:
2529 if (bond_update_speed_duplex(slave) &&
2530 bond_needs_speed_duplex(bond)) {
2531 slave->link = BOND_LINK_DOWN;
2532 if (net_ratelimit())
David Brazdil0f672f62019-12-10 10:32:29 +00002533 slave_warn(bond->dev, slave->dev,
2534 "failed to get link speed/duplex\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002535 continue;
2536 }
2537 bond_set_slave_link_state(slave, BOND_LINK_UP,
2538 BOND_SLAVE_NOTIFY_NOW);
2539 slave->last_link_up = jiffies;
2540
2541 primary = rtnl_dereference(bond->primary_slave);
2542 if (BOND_MODE(bond) == BOND_MODE_8023AD) {
2543 /* prevent it from being the active one */
2544 bond_set_backup_slave(slave);
2545 } else if (BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP) {
2546 /* make it immediately active */
2547 bond_set_active_slave(slave);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002548 }
2549
David Brazdil0f672f62019-12-10 10:32:29 +00002550 slave_info(bond->dev, slave->dev, "link status definitely up, %u Mbps %s duplex\n",
2551 slave->speed == SPEED_UNKNOWN ? 0 : slave->speed,
2552 slave->duplex ? "full" : "half");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002553
2554 bond_miimon_link_change(bond, slave, BOND_LINK_UP);
2555
2556 if (!bond->curr_active_slave || slave == primary)
2557 goto do_failover;
2558
2559 continue;
2560
2561 case BOND_LINK_DOWN:
2562 if (slave->link_failure_count < UINT_MAX)
2563 slave->link_failure_count++;
2564
2565 bond_set_slave_link_state(slave, BOND_LINK_DOWN,
2566 BOND_SLAVE_NOTIFY_NOW);
2567
2568 if (BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP ||
2569 BOND_MODE(bond) == BOND_MODE_8023AD)
2570 bond_set_slave_inactive_flags(slave,
2571 BOND_SLAVE_NOTIFY_NOW);
2572
David Brazdil0f672f62019-12-10 10:32:29 +00002573 slave_info(bond->dev, slave->dev, "link status definitely down, disabling slave\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002574
2575 bond_miimon_link_change(bond, slave, BOND_LINK_DOWN);
2576
2577 if (slave == rcu_access_pointer(bond->curr_active_slave))
2578 goto do_failover;
2579
2580 continue;
2581
2582 default:
David Brazdil0f672f62019-12-10 10:32:29 +00002583 slave_err(bond->dev, slave->dev, "invalid new link %d on slave\n",
2584 slave->link_new_state);
2585 bond_propose_link_state(slave, BOND_LINK_NOCHANGE);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002586
2587 continue;
2588 }
2589
2590do_failover:
2591 block_netpoll_tx();
2592 bond_select_active_slave(bond);
2593 unblock_netpoll_tx();
2594 }
2595
2596 bond_set_carrier(bond);
2597}
2598
2599/* bond_mii_monitor
2600 *
2601 * Really a wrapper that splits the mii monitor into two phases: an
2602 * inspection, then (if inspection indicates something needs to be done)
2603 * an acquisition of appropriate locks followed by a commit phase to
2604 * implement whatever link state changes are indicated.
2605 */
2606static void bond_mii_monitor(struct work_struct *work)
2607{
2608 struct bonding *bond = container_of(work, struct bonding,
2609 mii_work.work);
2610 bool should_notify_peers = false;
David Brazdil0f672f62019-12-10 10:32:29 +00002611 bool commit;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002612 unsigned long delay;
2613 struct slave *slave;
2614 struct list_head *iter;
2615
2616 delay = msecs_to_jiffies(bond->params.miimon);
2617
2618 if (!bond_has_slaves(bond))
2619 goto re_arm;
2620
2621 rcu_read_lock();
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002622 should_notify_peers = bond_should_notify_peers(bond);
David Brazdil0f672f62019-12-10 10:32:29 +00002623 commit = !!bond_miimon_inspect(bond);
2624 if (bond->send_peer_notif) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002625 rcu_read_unlock();
David Brazdil0f672f62019-12-10 10:32:29 +00002626 if (rtnl_trylock()) {
2627 bond->send_peer_notif--;
2628 rtnl_unlock();
2629 }
2630 } else {
2631 rcu_read_unlock();
2632 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002633
David Brazdil0f672f62019-12-10 10:32:29 +00002634 if (commit) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002635 /* Race avoidance with bond_close cancel of workqueue */
2636 if (!rtnl_trylock()) {
2637 delay = 1;
2638 should_notify_peers = false;
2639 goto re_arm;
2640 }
2641
2642 bond_for_each_slave(bond, slave, iter) {
2643 bond_commit_link_state(slave, BOND_SLAVE_NOTIFY_LATER);
2644 }
2645 bond_miimon_commit(bond);
2646
2647 rtnl_unlock(); /* might sleep, hold no other locks */
David Brazdil0f672f62019-12-10 10:32:29 +00002648 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002649
2650re_arm:
2651 if (bond->params.miimon)
2652 queue_delayed_work(bond->wq, &bond->mii_work, delay);
2653
2654 if (should_notify_peers) {
2655 if (!rtnl_trylock())
2656 return;
2657 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, bond->dev);
2658 rtnl_unlock();
2659 }
2660}
2661
Olivier Deprez157378f2022-04-04 15:47:50 +02002662static int bond_upper_dev_walk(struct net_device *upper,
2663 struct netdev_nested_priv *priv)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002664{
Olivier Deprez157378f2022-04-04 15:47:50 +02002665 __be32 ip = *(__be32 *)priv->data;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002666
2667 return ip == bond_confirm_addr(upper, 0, ip);
2668}
2669
2670static bool bond_has_this_ip(struct bonding *bond, __be32 ip)
2671{
Olivier Deprez157378f2022-04-04 15:47:50 +02002672 struct netdev_nested_priv priv = {
2673 .data = (void *)&ip,
2674 };
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002675 bool ret = false;
2676
2677 if (ip == bond_confirm_addr(bond->dev, 0, ip))
2678 return true;
2679
2680 rcu_read_lock();
Olivier Deprez157378f2022-04-04 15:47:50 +02002681 if (netdev_walk_all_upper_dev_rcu(bond->dev, bond_upper_dev_walk, &priv))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002682 ret = true;
2683 rcu_read_unlock();
2684
2685 return ret;
2686}
2687
2688/* We go to the (large) trouble of VLAN tagging ARP frames because
2689 * switches in VLAN mode (especially if ports are configured as
2690 * "native" to a VLAN) might not pass non-tagged frames.
2691 */
David Brazdil0f672f62019-12-10 10:32:29 +00002692static void bond_arp_send(struct slave *slave, int arp_op, __be32 dest_ip,
2693 __be32 src_ip, struct bond_vlan_tag *tags)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002694{
2695 struct sk_buff *skb;
2696 struct bond_vlan_tag *outer_tag = tags;
David Brazdil0f672f62019-12-10 10:32:29 +00002697 struct net_device *slave_dev = slave->dev;
2698 struct net_device *bond_dev = slave->bond->dev;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002699
David Brazdil0f672f62019-12-10 10:32:29 +00002700 slave_dbg(bond_dev, slave_dev, "arp %d on slave: dst %pI4 src %pI4\n",
2701 arp_op, &dest_ip, &src_ip);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002702
2703 skb = arp_create(arp_op, ETH_P_ARP, dest_ip, slave_dev, src_ip,
2704 NULL, slave_dev->dev_addr, NULL);
2705
2706 if (!skb) {
2707 net_err_ratelimited("ARP packet allocation failed\n");
2708 return;
2709 }
2710
2711 if (!tags || tags->vlan_proto == VLAN_N_VID)
2712 goto xmit;
2713
2714 tags++;
2715
2716 /* Go through all the tags backwards and add them to the packet */
2717 while (tags->vlan_proto != VLAN_N_VID) {
2718 if (!tags->vlan_id) {
2719 tags++;
2720 continue;
2721 }
2722
David Brazdil0f672f62019-12-10 10:32:29 +00002723 slave_dbg(bond_dev, slave_dev, "inner tag: proto %X vid %X\n",
2724 ntohs(outer_tag->vlan_proto), tags->vlan_id);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002725 skb = vlan_insert_tag_set_proto(skb, tags->vlan_proto,
2726 tags->vlan_id);
2727 if (!skb) {
2728 net_err_ratelimited("failed to insert inner VLAN tag\n");
2729 return;
2730 }
2731
2732 tags++;
2733 }
2734 /* Set the outer tag */
2735 if (outer_tag->vlan_id) {
David Brazdil0f672f62019-12-10 10:32:29 +00002736 slave_dbg(bond_dev, slave_dev, "outer tag: proto %X vid %X\n",
2737 ntohs(outer_tag->vlan_proto), outer_tag->vlan_id);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002738 __vlan_hwaccel_put_tag(skb, outer_tag->vlan_proto,
2739 outer_tag->vlan_id);
2740 }
2741
2742xmit:
2743 arp_xmit(skb);
2744}
2745
2746/* Validate the device path between the @start_dev and the @end_dev.
2747 * The path is valid if the @end_dev is reachable through device
2748 * stacking.
2749 * When the path is validated, collect any vlan information in the
2750 * path.
2751 */
2752struct bond_vlan_tag *bond_verify_device_path(struct net_device *start_dev,
2753 struct net_device *end_dev,
2754 int level)
2755{
2756 struct bond_vlan_tag *tags;
2757 struct net_device *upper;
2758 struct list_head *iter;
2759
2760 if (start_dev == end_dev) {
2761 tags = kcalloc(level + 1, sizeof(*tags), GFP_ATOMIC);
2762 if (!tags)
2763 return ERR_PTR(-ENOMEM);
2764 tags[level].vlan_proto = VLAN_N_VID;
2765 return tags;
2766 }
2767
2768 netdev_for_each_upper_dev_rcu(start_dev, upper, iter) {
2769 tags = bond_verify_device_path(upper, end_dev, level + 1);
2770 if (IS_ERR_OR_NULL(tags)) {
2771 if (IS_ERR(tags))
2772 return tags;
2773 continue;
2774 }
2775 if (is_vlan_dev(upper)) {
2776 tags[level].vlan_proto = vlan_dev_vlan_proto(upper);
2777 tags[level].vlan_id = vlan_dev_vlan_id(upper);
2778 }
2779
2780 return tags;
2781 }
2782
2783 return NULL;
2784}
2785
2786static void bond_arp_send_all(struct bonding *bond, struct slave *slave)
2787{
2788 struct rtable *rt;
2789 struct bond_vlan_tag *tags;
2790 __be32 *targets = bond->params.arp_targets, addr;
2791 int i;
2792
2793 for (i = 0; i < BOND_MAX_ARP_TARGETS && targets[i]; i++) {
David Brazdil0f672f62019-12-10 10:32:29 +00002794 slave_dbg(bond->dev, slave->dev, "%s: target %pI4\n",
2795 __func__, &targets[i]);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002796 tags = NULL;
2797
2798 /* Find out through which dev should the packet go */
2799 rt = ip_route_output(dev_net(bond->dev), targets[i], 0,
2800 RTO_ONLINK, 0);
2801 if (IS_ERR(rt)) {
2802 /* there's no route to target - try to send arp
2803 * probe to generate any traffic (arp_validate=0)
2804 */
2805 if (bond->params.arp_validate)
2806 net_warn_ratelimited("%s: no route to arp_ip_target %pI4 and arp_validate is set\n",
2807 bond->dev->name,
2808 &targets[i]);
David Brazdil0f672f62019-12-10 10:32:29 +00002809 bond_arp_send(slave, ARPOP_REQUEST, targets[i],
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002810 0, tags);
2811 continue;
2812 }
2813
2814 /* bond device itself */
2815 if (rt->dst.dev == bond->dev)
2816 goto found;
2817
2818 rcu_read_lock();
2819 tags = bond_verify_device_path(bond->dev, rt->dst.dev, 0);
2820 rcu_read_unlock();
2821
2822 if (!IS_ERR_OR_NULL(tags))
2823 goto found;
2824
2825 /* Not our device - skip */
David Brazdil0f672f62019-12-10 10:32:29 +00002826 slave_dbg(bond->dev, slave->dev, "no path to arp_ip_target %pI4 via rt.dev %s\n",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002827 &targets[i], rt->dst.dev ? rt->dst.dev->name : "NULL");
2828
2829 ip_rt_put(rt);
2830 continue;
2831
2832found:
2833 addr = bond_confirm_addr(rt->dst.dev, targets[i], 0);
2834 ip_rt_put(rt);
David Brazdil0f672f62019-12-10 10:32:29 +00002835 bond_arp_send(slave, ARPOP_REQUEST, targets[i], addr, tags);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002836 kfree(tags);
2837 }
2838}
2839
2840static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 sip, __be32 tip)
2841{
2842 int i;
2843
2844 if (!sip || !bond_has_this_ip(bond, tip)) {
David Brazdil0f672f62019-12-10 10:32:29 +00002845 slave_dbg(bond->dev, slave->dev, "%s: sip %pI4 tip %pI4 not found\n",
2846 __func__, &sip, &tip);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002847 return;
2848 }
2849
2850 i = bond_get_targets_ip(bond->params.arp_targets, sip);
2851 if (i == -1) {
David Brazdil0f672f62019-12-10 10:32:29 +00002852 slave_dbg(bond->dev, slave->dev, "%s: sip %pI4 not found in targets\n",
2853 __func__, &sip);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002854 return;
2855 }
2856 slave->last_rx = jiffies;
2857 slave->target_last_arp_rx[i] = jiffies;
2858}
2859
2860int bond_arp_rcv(const struct sk_buff *skb, struct bonding *bond,
2861 struct slave *slave)
2862{
2863 struct arphdr *arp = (struct arphdr *)skb->data;
2864 struct slave *curr_active_slave, *curr_arp_slave;
2865 unsigned char *arp_ptr;
2866 __be32 sip, tip;
2867 int is_arp = skb->protocol == __cpu_to_be16(ETH_P_ARP);
2868 unsigned int alen;
2869
2870 if (!slave_do_arp_validate(bond, slave)) {
2871 if ((slave_do_arp_validate_only(bond) && is_arp) ||
2872 !slave_do_arp_validate_only(bond))
2873 slave->last_rx = jiffies;
2874 return RX_HANDLER_ANOTHER;
2875 } else if (!is_arp) {
2876 return RX_HANDLER_ANOTHER;
2877 }
2878
2879 alen = arp_hdr_len(bond->dev);
2880
David Brazdil0f672f62019-12-10 10:32:29 +00002881 slave_dbg(bond->dev, slave->dev, "%s: skb->dev %s\n",
2882 __func__, skb->dev->name);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002883
2884 if (alen > skb_headlen(skb)) {
2885 arp = kmalloc(alen, GFP_ATOMIC);
2886 if (!arp)
2887 goto out_unlock;
2888 if (skb_copy_bits(skb, 0, arp, alen) < 0)
2889 goto out_unlock;
2890 }
2891
2892 if (arp->ar_hln != bond->dev->addr_len ||
2893 skb->pkt_type == PACKET_OTHERHOST ||
2894 skb->pkt_type == PACKET_LOOPBACK ||
2895 arp->ar_hrd != htons(ARPHRD_ETHER) ||
2896 arp->ar_pro != htons(ETH_P_IP) ||
2897 arp->ar_pln != 4)
2898 goto out_unlock;
2899
2900 arp_ptr = (unsigned char *)(arp + 1);
2901 arp_ptr += bond->dev->addr_len;
2902 memcpy(&sip, arp_ptr, 4);
2903 arp_ptr += 4 + bond->dev->addr_len;
2904 memcpy(&tip, arp_ptr, 4);
2905
David Brazdil0f672f62019-12-10 10:32:29 +00002906 slave_dbg(bond->dev, slave->dev, "%s: %s/%d av %d sv %d sip %pI4 tip %pI4\n",
2907 __func__, slave->dev->name, bond_slave_state(slave),
2908 bond->params.arp_validate, slave_do_arp_validate(bond, slave),
2909 &sip, &tip);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002910
2911 curr_active_slave = rcu_dereference(bond->curr_active_slave);
2912 curr_arp_slave = rcu_dereference(bond->current_arp_slave);
2913
2914 /* We 'trust' the received ARP enough to validate it if:
2915 *
2916 * (a) the slave receiving the ARP is active (which includes the
2917 * current ARP slave, if any), or
2918 *
2919 * (b) the receiving slave isn't active, but there is a currently
2920 * active slave and it received valid arp reply(s) after it became
2921 * the currently active slave, or
2922 *
2923 * (c) there is an ARP slave that sent an ARP during the prior ARP
2924 * interval, and we receive an ARP reply on any slave. We accept
2925 * these because switch FDB update delays may deliver the ARP
2926 * reply to a slave other than the sender of the ARP request.
2927 *
2928 * Note: for (b), backup slaves are receiving the broadcast ARP
2929 * request, not a reply. This request passes from the sending
2930 * slave through the L2 switch(es) to the receiving slave. Since
2931 * this is checking the request, sip/tip are swapped for
2932 * validation.
2933 *
2934 * This is done to avoid endless looping when we can't reach the
2935 * arp_ip_target and fool ourselves with our own arp requests.
2936 */
2937 if (bond_is_active_slave(slave))
2938 bond_validate_arp(bond, slave, sip, tip);
2939 else if (curr_active_slave &&
2940 time_after(slave_last_rx(bond, curr_active_slave),
2941 curr_active_slave->last_link_up))
2942 bond_validate_arp(bond, slave, tip, sip);
2943 else if (curr_arp_slave && (arp->ar_op == htons(ARPOP_REPLY)) &&
2944 bond_time_in_interval(bond,
2945 dev_trans_start(curr_arp_slave->dev), 1))
2946 bond_validate_arp(bond, slave, sip, tip);
2947
2948out_unlock:
2949 if (arp != (struct arphdr *)skb->data)
2950 kfree(arp);
2951 return RX_HANDLER_ANOTHER;
2952}
2953
2954/* function to verify if we're in the arp_interval timeslice, returns true if
2955 * (last_act - arp_interval) <= jiffies <= (last_act + mod * arp_interval +
2956 * arp_interval/2) . the arp_interval/2 is needed for really fast networks.
2957 */
2958static bool bond_time_in_interval(struct bonding *bond, unsigned long last_act,
2959 int mod)
2960{
2961 int delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
2962
2963 return time_in_range(jiffies,
2964 last_act - delta_in_ticks,
2965 last_act + mod * delta_in_ticks + delta_in_ticks/2);
2966}
2967
2968/* This function is called regularly to monitor each slave's link
2969 * ensuring that traffic is being sent and received when arp monitoring
2970 * is used in load-balancing mode. if the adapter has been dormant, then an
2971 * arp is transmitted to generate traffic. see activebackup_arp_monitor for
2972 * arp monitoring in active backup mode.
2973 */
2974static void bond_loadbalance_arp_mon(struct bonding *bond)
2975{
2976 struct slave *slave, *oldcurrent;
2977 struct list_head *iter;
2978 int do_failover = 0, slave_state_changed = 0;
2979
2980 if (!bond_has_slaves(bond))
2981 goto re_arm;
2982
2983 rcu_read_lock();
2984
2985 oldcurrent = rcu_dereference(bond->curr_active_slave);
2986 /* see if any of the previous devices are up now (i.e. they have
2987 * xmt and rcv traffic). the curr_active_slave does not come into
2988 * the picture unless it is null. also, slave->last_link_up is not
2989 * needed here because we send an arp on each slave and give a slave
2990 * as long as it needs to get the tx/rx within the delta.
2991 * TODO: what about up/down delay in arp mode? it wasn't here before
2992 * so it can wait
2993 */
2994 bond_for_each_slave_rcu(bond, slave, iter) {
2995 unsigned long trans_start = dev_trans_start(slave->dev);
2996
David Brazdil0f672f62019-12-10 10:32:29 +00002997 bond_propose_link_state(slave, BOND_LINK_NOCHANGE);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002998
2999 if (slave->link != BOND_LINK_UP) {
3000 if (bond_time_in_interval(bond, trans_start, 1) &&
3001 bond_time_in_interval(bond, slave->last_rx, 1)) {
3002
David Brazdil0f672f62019-12-10 10:32:29 +00003003 bond_propose_link_state(slave, BOND_LINK_UP);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003004 slave_state_changed = 1;
3005
3006 /* primary_slave has no meaning in round-robin
3007 * mode. the window of a slave being up and
3008 * curr_active_slave being null after enslaving
3009 * is closed.
3010 */
3011 if (!oldcurrent) {
David Brazdil0f672f62019-12-10 10:32:29 +00003012 slave_info(bond->dev, slave->dev, "link status definitely up\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003013 do_failover = 1;
3014 } else {
David Brazdil0f672f62019-12-10 10:32:29 +00003015 slave_info(bond->dev, slave->dev, "interface is now up\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003016 }
3017 }
3018 } else {
3019 /* slave->link == BOND_LINK_UP */
3020
3021 /* not all switches will respond to an arp request
3022 * when the source ip is 0, so don't take the link down
3023 * if we don't know our ip yet
3024 */
3025 if (!bond_time_in_interval(bond, trans_start, 2) ||
3026 !bond_time_in_interval(bond, slave->last_rx, 2)) {
3027
David Brazdil0f672f62019-12-10 10:32:29 +00003028 bond_propose_link_state(slave, BOND_LINK_DOWN);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003029 slave_state_changed = 1;
3030
3031 if (slave->link_failure_count < UINT_MAX)
3032 slave->link_failure_count++;
3033
David Brazdil0f672f62019-12-10 10:32:29 +00003034 slave_info(bond->dev, slave->dev, "interface is now down\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003035
3036 if (slave == oldcurrent)
3037 do_failover = 1;
3038 }
3039 }
3040
3041 /* note: if switch is in round-robin mode, all links
3042 * must tx arp to ensure all links rx an arp - otherwise
3043 * links may oscillate or not come up at all; if switch is
3044 * in something like xor mode, there is nothing we can
3045 * do - all replies will be rx'ed on same link causing slaves
3046 * to be unstable during low/no traffic periods
3047 */
3048 if (bond_slave_is_up(slave))
3049 bond_arp_send_all(bond, slave);
3050 }
3051
3052 rcu_read_unlock();
3053
3054 if (do_failover || slave_state_changed) {
3055 if (!rtnl_trylock())
3056 goto re_arm;
3057
3058 bond_for_each_slave(bond, slave, iter) {
David Brazdil0f672f62019-12-10 10:32:29 +00003059 if (slave->link_new_state != BOND_LINK_NOCHANGE)
3060 slave->link = slave->link_new_state;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003061 }
3062
3063 if (slave_state_changed) {
3064 bond_slave_state_change(bond);
3065 if (BOND_MODE(bond) == BOND_MODE_XOR)
3066 bond_update_slave_arr(bond, NULL);
3067 }
3068 if (do_failover) {
3069 block_netpoll_tx();
3070 bond_select_active_slave(bond);
3071 unblock_netpoll_tx();
3072 }
3073 rtnl_unlock();
3074 }
3075
3076re_arm:
3077 if (bond->params.arp_interval)
3078 queue_delayed_work(bond->wq, &bond->arp_work,
3079 msecs_to_jiffies(bond->params.arp_interval));
3080}
3081
3082/* Called to inspect slaves for active-backup mode ARP monitor link state
David Brazdil0f672f62019-12-10 10:32:29 +00003083 * changes. Sets proposed link state in slaves to specify what action
3084 * should take place for the slave. Returns 0 if no changes are found, >0
3085 * if changes to link states must be committed.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003086 *
3087 * Called with rcu_read_lock held.
3088 */
3089static int bond_ab_arp_inspect(struct bonding *bond)
3090{
3091 unsigned long trans_start, last_rx;
3092 struct list_head *iter;
3093 struct slave *slave;
3094 int commit = 0;
3095
3096 bond_for_each_slave_rcu(bond, slave, iter) {
David Brazdil0f672f62019-12-10 10:32:29 +00003097 bond_propose_link_state(slave, BOND_LINK_NOCHANGE);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003098 last_rx = slave_last_rx(bond, slave);
3099
3100 if (slave->link != BOND_LINK_UP) {
3101 if (bond_time_in_interval(bond, last_rx, 1)) {
David Brazdil0f672f62019-12-10 10:32:29 +00003102 bond_propose_link_state(slave, BOND_LINK_UP);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003103 commit++;
Olivier Deprez0e641232021-09-23 10:07:05 +02003104 } else if (slave->link == BOND_LINK_BACK) {
3105 bond_propose_link_state(slave, BOND_LINK_FAIL);
3106 commit++;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003107 }
3108 continue;
3109 }
3110
3111 /* Give slaves 2*delta after being enslaved or made
3112 * active. This avoids bouncing, as the last receive
3113 * times need a full ARP monitor cycle to be updated.
3114 */
3115 if (bond_time_in_interval(bond, slave->last_link_up, 2))
3116 continue;
3117
3118 /* Backup slave is down if:
3119 * - No current_arp_slave AND
3120 * - more than 3*delta since last receive AND
3121 * - the bond has an IP address
3122 *
3123 * Note: a non-null current_arp_slave indicates
3124 * the curr_active_slave went down and we are
3125 * searching for a new one; under this condition
3126 * we only take the curr_active_slave down - this
3127 * gives each slave a chance to tx/rx traffic
3128 * before being taken out
3129 */
3130 if (!bond_is_active_slave(slave) &&
3131 !rcu_access_pointer(bond->current_arp_slave) &&
3132 !bond_time_in_interval(bond, last_rx, 3)) {
David Brazdil0f672f62019-12-10 10:32:29 +00003133 bond_propose_link_state(slave, BOND_LINK_DOWN);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003134 commit++;
3135 }
3136
3137 /* Active slave is down if:
3138 * - more than 2*delta since transmitting OR
3139 * - (more than 2*delta since receive AND
3140 * the bond has an IP address)
3141 */
3142 trans_start = dev_trans_start(slave->dev);
3143 if (bond_is_active_slave(slave) &&
3144 (!bond_time_in_interval(bond, trans_start, 2) ||
3145 !bond_time_in_interval(bond, last_rx, 2))) {
David Brazdil0f672f62019-12-10 10:32:29 +00003146 bond_propose_link_state(slave, BOND_LINK_DOWN);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003147 commit++;
3148 }
3149 }
3150
3151 return commit;
3152}
3153
3154/* Called to commit link state changes noted by inspection step of
3155 * active-backup mode ARP monitor.
3156 *
3157 * Called with RTNL hold.
3158 */
3159static void bond_ab_arp_commit(struct bonding *bond)
3160{
3161 unsigned long trans_start;
3162 struct list_head *iter;
3163 struct slave *slave;
3164
3165 bond_for_each_slave(bond, slave, iter) {
David Brazdil0f672f62019-12-10 10:32:29 +00003166 switch (slave->link_new_state) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003167 case BOND_LINK_NOCHANGE:
3168 continue;
3169
3170 case BOND_LINK_UP:
3171 trans_start = dev_trans_start(slave->dev);
3172 if (rtnl_dereference(bond->curr_active_slave) != slave ||
3173 (!rtnl_dereference(bond->curr_active_slave) &&
3174 bond_time_in_interval(bond, trans_start, 1))) {
3175 struct slave *current_arp_slave;
3176
3177 current_arp_slave = rtnl_dereference(bond->current_arp_slave);
3178 bond_set_slave_link_state(slave, BOND_LINK_UP,
3179 BOND_SLAVE_NOTIFY_NOW);
3180 if (current_arp_slave) {
3181 bond_set_slave_inactive_flags(
3182 current_arp_slave,
3183 BOND_SLAVE_NOTIFY_NOW);
3184 RCU_INIT_POINTER(bond->current_arp_slave, NULL);
3185 }
3186
David Brazdil0f672f62019-12-10 10:32:29 +00003187 slave_info(bond->dev, slave->dev, "link status definitely up\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003188
3189 if (!rtnl_dereference(bond->curr_active_slave) ||
3190 slave == rtnl_dereference(bond->primary_slave))
3191 goto do_failover;
3192
3193 }
3194
3195 continue;
3196
3197 case BOND_LINK_DOWN:
3198 if (slave->link_failure_count < UINT_MAX)
3199 slave->link_failure_count++;
3200
3201 bond_set_slave_link_state(slave, BOND_LINK_DOWN,
3202 BOND_SLAVE_NOTIFY_NOW);
3203 bond_set_slave_inactive_flags(slave,
3204 BOND_SLAVE_NOTIFY_NOW);
3205
David Brazdil0f672f62019-12-10 10:32:29 +00003206 slave_info(bond->dev, slave->dev, "link status definitely down, disabling slave\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003207
3208 if (slave == rtnl_dereference(bond->curr_active_slave)) {
3209 RCU_INIT_POINTER(bond->current_arp_slave, NULL);
3210 goto do_failover;
3211 }
3212
3213 continue;
3214
Olivier Deprez0e641232021-09-23 10:07:05 +02003215 case BOND_LINK_FAIL:
3216 bond_set_slave_link_state(slave, BOND_LINK_FAIL,
3217 BOND_SLAVE_NOTIFY_NOW);
3218 bond_set_slave_inactive_flags(slave,
3219 BOND_SLAVE_NOTIFY_NOW);
3220
3221 /* A slave has just been enslaved and has become
3222 * the current active slave.
3223 */
3224 if (rtnl_dereference(bond->curr_active_slave))
3225 RCU_INIT_POINTER(bond->current_arp_slave, NULL);
3226 continue;
3227
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003228 default:
David Brazdil0f672f62019-12-10 10:32:29 +00003229 slave_err(bond->dev, slave->dev,
3230 "impossible: link_new_state %d on slave\n",
3231 slave->link_new_state);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003232 continue;
3233 }
3234
3235do_failover:
3236 block_netpoll_tx();
3237 bond_select_active_slave(bond);
3238 unblock_netpoll_tx();
3239 }
3240
3241 bond_set_carrier(bond);
3242}
3243
3244/* Send ARP probes for active-backup mode ARP monitor.
3245 *
3246 * Called with rcu_read_lock held.
3247 */
3248static bool bond_ab_arp_probe(struct bonding *bond)
3249{
3250 struct slave *slave, *before = NULL, *new_slave = NULL,
3251 *curr_arp_slave = rcu_dereference(bond->current_arp_slave),
3252 *curr_active_slave = rcu_dereference(bond->curr_active_slave);
3253 struct list_head *iter;
3254 bool found = false;
3255 bool should_notify_rtnl = BOND_SLAVE_NOTIFY_LATER;
3256
3257 if (curr_arp_slave && curr_active_slave)
3258 netdev_info(bond->dev, "PROBE: c_arp %s && cas %s BAD\n",
3259 curr_arp_slave->dev->name,
3260 curr_active_slave->dev->name);
3261
3262 if (curr_active_slave) {
3263 bond_arp_send_all(bond, curr_active_slave);
3264 return should_notify_rtnl;
3265 }
3266
3267 /* if we don't have a curr_active_slave, search for the next available
3268 * backup slave from the current_arp_slave and make it the candidate
3269 * for becoming the curr_active_slave
3270 */
3271
3272 if (!curr_arp_slave) {
3273 curr_arp_slave = bond_first_slave_rcu(bond);
3274 if (!curr_arp_slave)
3275 return should_notify_rtnl;
3276 }
3277
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003278 bond_for_each_slave_rcu(bond, slave, iter) {
3279 if (!found && !before && bond_slave_is_up(slave))
3280 before = slave;
3281
3282 if (found && !new_slave && bond_slave_is_up(slave))
3283 new_slave = slave;
3284 /* if the link state is up at this point, we
3285 * mark it down - this can happen if we have
3286 * simultaneous link failures and
3287 * reselect_active_interface doesn't make this
3288 * one the current slave so it is still marked
3289 * up when it is actually down
3290 */
3291 if (!bond_slave_is_up(slave) && slave->link == BOND_LINK_UP) {
3292 bond_set_slave_link_state(slave, BOND_LINK_DOWN,
3293 BOND_SLAVE_NOTIFY_LATER);
3294 if (slave->link_failure_count < UINT_MAX)
3295 slave->link_failure_count++;
3296
3297 bond_set_slave_inactive_flags(slave,
3298 BOND_SLAVE_NOTIFY_LATER);
3299
David Brazdil0f672f62019-12-10 10:32:29 +00003300 slave_info(bond->dev, slave->dev, "backup interface is now down\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003301 }
3302 if (slave == curr_arp_slave)
3303 found = true;
3304 }
3305
3306 if (!new_slave && before)
3307 new_slave = before;
3308
3309 if (!new_slave)
3310 goto check_state;
3311
3312 bond_set_slave_link_state(new_slave, BOND_LINK_BACK,
3313 BOND_SLAVE_NOTIFY_LATER);
3314 bond_set_slave_active_flags(new_slave, BOND_SLAVE_NOTIFY_LATER);
3315 bond_arp_send_all(bond, new_slave);
3316 new_slave->last_link_up = jiffies;
3317 rcu_assign_pointer(bond->current_arp_slave, new_slave);
3318
3319check_state:
3320 bond_for_each_slave_rcu(bond, slave, iter) {
3321 if (slave->should_notify || slave->should_notify_link) {
3322 should_notify_rtnl = BOND_SLAVE_NOTIFY_NOW;
3323 break;
3324 }
3325 }
3326 return should_notify_rtnl;
3327}
3328
3329static void bond_activebackup_arp_mon(struct bonding *bond)
3330{
3331 bool should_notify_peers = false;
3332 bool should_notify_rtnl = false;
3333 int delta_in_ticks;
3334
3335 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
3336
3337 if (!bond_has_slaves(bond))
3338 goto re_arm;
3339
3340 rcu_read_lock();
3341
3342 should_notify_peers = bond_should_notify_peers(bond);
3343
3344 if (bond_ab_arp_inspect(bond)) {
3345 rcu_read_unlock();
3346
3347 /* Race avoidance with bond_close flush of workqueue */
3348 if (!rtnl_trylock()) {
3349 delta_in_ticks = 1;
3350 should_notify_peers = false;
3351 goto re_arm;
3352 }
3353
3354 bond_ab_arp_commit(bond);
3355
3356 rtnl_unlock();
3357 rcu_read_lock();
3358 }
3359
3360 should_notify_rtnl = bond_ab_arp_probe(bond);
3361 rcu_read_unlock();
3362
3363re_arm:
3364 if (bond->params.arp_interval)
3365 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
3366
3367 if (should_notify_peers || should_notify_rtnl) {
3368 if (!rtnl_trylock())
3369 return;
3370
3371 if (should_notify_peers)
3372 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS,
3373 bond->dev);
3374 if (should_notify_rtnl) {
3375 bond_slave_state_notify(bond);
3376 bond_slave_link_notify(bond);
3377 }
3378
3379 rtnl_unlock();
3380 }
3381}
3382
3383static void bond_arp_monitor(struct work_struct *work)
3384{
3385 struct bonding *bond = container_of(work, struct bonding,
3386 arp_work.work);
3387
3388 if (BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP)
3389 bond_activebackup_arp_mon(bond);
3390 else
3391 bond_loadbalance_arp_mon(bond);
3392}
3393
3394/*-------------------------- netdev event handling --------------------------*/
3395
3396/* Change device name */
3397static int bond_event_changename(struct bonding *bond)
3398{
3399 bond_remove_proc_entry(bond);
3400 bond_create_proc_entry(bond);
3401
3402 bond_debug_reregister(bond);
3403
3404 return NOTIFY_DONE;
3405}
3406
3407static int bond_master_netdev_event(unsigned long event,
3408 struct net_device *bond_dev)
3409{
3410 struct bonding *event_bond = netdev_priv(bond_dev);
3411
David Brazdil0f672f62019-12-10 10:32:29 +00003412 netdev_dbg(bond_dev, "%s called\n", __func__);
3413
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003414 switch (event) {
3415 case NETDEV_CHANGENAME:
3416 return bond_event_changename(event_bond);
3417 case NETDEV_UNREGISTER:
3418 bond_remove_proc_entry(event_bond);
Olivier Deprez157378f2022-04-04 15:47:50 +02003419#ifdef CONFIG_XFRM_OFFLOAD
3420 xfrm_dev_state_flush(dev_net(bond_dev), bond_dev, true);
3421#endif /* CONFIG_XFRM_OFFLOAD */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003422 break;
3423 case NETDEV_REGISTER:
3424 bond_create_proc_entry(event_bond);
3425 break;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003426 default:
3427 break;
3428 }
3429
3430 return NOTIFY_DONE;
3431}
3432
3433static int bond_slave_netdev_event(unsigned long event,
3434 struct net_device *slave_dev)
3435{
3436 struct slave *slave = bond_slave_get_rtnl(slave_dev), *primary;
3437 struct bonding *bond;
3438 struct net_device *bond_dev;
3439
3440 /* A netdev event can be generated while enslaving a device
3441 * before netdev_rx_handler_register is called in which case
3442 * slave will be NULL
3443 */
David Brazdil0f672f62019-12-10 10:32:29 +00003444 if (!slave) {
3445 netdev_dbg(slave_dev, "%s called on NULL slave\n", __func__);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003446 return NOTIFY_DONE;
David Brazdil0f672f62019-12-10 10:32:29 +00003447 }
3448
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003449 bond_dev = slave->bond->dev;
3450 bond = slave->bond;
3451 primary = rtnl_dereference(bond->primary_slave);
3452
David Brazdil0f672f62019-12-10 10:32:29 +00003453 slave_dbg(bond_dev, slave_dev, "%s called\n", __func__);
3454
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003455 switch (event) {
3456 case NETDEV_UNREGISTER:
3457 if (bond_dev->type != ARPHRD_ETHER)
3458 bond_release_and_destroy(bond_dev, slave_dev);
3459 else
3460 __bond_release_one(bond_dev, slave_dev, false, true);
3461 break;
3462 case NETDEV_UP:
3463 case NETDEV_CHANGE:
3464 /* For 802.3ad mode only:
3465 * Getting invalid Speed/Duplex values here will put slave
David Brazdil0f672f62019-12-10 10:32:29 +00003466 * in weird state. Mark it as link-fail if the link was
3467 * previously up or link-down if it hasn't yet come up, and
3468 * let link-monitoring (miimon) set it right when correct
3469 * speeds/duplex are available.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003470 */
3471 if (bond_update_speed_duplex(slave) &&
David Brazdil0f672f62019-12-10 10:32:29 +00003472 BOND_MODE(bond) == BOND_MODE_8023AD) {
3473 if (slave->last_link_up)
3474 slave->link = BOND_LINK_FAIL;
3475 else
3476 slave->link = BOND_LINK_DOWN;
3477 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003478
3479 if (BOND_MODE(bond) == BOND_MODE_8023AD)
3480 bond_3ad_adapter_speed_duplex_changed(slave);
Olivier Deprez157378f2022-04-04 15:47:50 +02003481 fallthrough;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003482 case NETDEV_DOWN:
3483 /* Refresh slave-array if applicable!
3484 * If the setup does not use miimon or arpmon (mode-specific!),
3485 * then these events will not cause the slave-array to be
3486 * refreshed. This will cause xmit to use a slave that is not
3487 * usable. Avoid such situation by refeshing the array at these
3488 * events. If these (miimon/arpmon) parameters are configured
3489 * then array gets refreshed twice and that should be fine!
3490 */
3491 if (bond_mode_can_use_xmit_hash(bond))
3492 bond_update_slave_arr(bond, NULL);
3493 break;
3494 case NETDEV_CHANGEMTU:
3495 /* TODO: Should slaves be allowed to
3496 * independently alter their MTU? For
3497 * an active-backup bond, slaves need
3498 * not be the same type of device, so
3499 * MTUs may vary. For other modes,
3500 * slaves arguably should have the
3501 * same MTUs. To do this, we'd need to
3502 * take over the slave's change_mtu
3503 * function for the duration of their
3504 * servitude.
3505 */
3506 break;
3507 case NETDEV_CHANGENAME:
3508 /* we don't care if we don't have primary set */
3509 if (!bond_uses_primary(bond) ||
3510 !bond->params.primary[0])
3511 break;
3512
3513 if (slave == primary) {
3514 /* slave's name changed - he's no longer primary */
3515 RCU_INIT_POINTER(bond->primary_slave, NULL);
3516 } else if (!strcmp(slave_dev->name, bond->params.primary)) {
3517 /* we have a new primary slave */
3518 rcu_assign_pointer(bond->primary_slave, slave);
3519 } else { /* we didn't change primary - exit */
3520 break;
3521 }
3522
3523 netdev_info(bond->dev, "Primary slave changed to %s, reselecting active slave\n",
3524 primary ? slave_dev->name : "none");
3525
3526 block_netpoll_tx();
3527 bond_select_active_slave(bond);
3528 unblock_netpoll_tx();
3529 break;
3530 case NETDEV_FEAT_CHANGE:
3531 bond_compute_features(bond);
3532 break;
3533 case NETDEV_RESEND_IGMP:
3534 /* Propagate to master device */
3535 call_netdevice_notifiers(event, slave->bond->dev);
3536 break;
3537 default:
3538 break;
3539 }
3540
3541 return NOTIFY_DONE;
3542}
3543
3544/* bond_netdev_event: handle netdev notifier chain events.
3545 *
3546 * This function receives events for the netdev chain. The caller (an
3547 * ioctl handler calling blocking_notifier_call_chain) holds the necessary
3548 * locks for us to safely manipulate the slave devices (RTNL lock,
3549 * dev_probe_lock).
3550 */
3551static int bond_netdev_event(struct notifier_block *this,
3552 unsigned long event, void *ptr)
3553{
3554 struct net_device *event_dev = netdev_notifier_info_to_dev(ptr);
3555
David Brazdil0f672f62019-12-10 10:32:29 +00003556 netdev_dbg(event_dev, "%s received %s\n",
3557 __func__, netdev_cmd_to_name(event));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003558
3559 if (!(event_dev->priv_flags & IFF_BONDING))
3560 return NOTIFY_DONE;
3561
3562 if (event_dev->flags & IFF_MASTER) {
David Brazdil0f672f62019-12-10 10:32:29 +00003563 int ret;
3564
3565 ret = bond_master_netdev_event(event, event_dev);
3566 if (ret != NOTIFY_DONE)
3567 return ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003568 }
3569
David Brazdil0f672f62019-12-10 10:32:29 +00003570 if (event_dev->flags & IFF_SLAVE)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003571 return bond_slave_netdev_event(event, event_dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003572
3573 return NOTIFY_DONE;
3574}
3575
3576static struct notifier_block bond_netdev_notifier = {
3577 .notifier_call = bond_netdev_event,
3578};
3579
3580/*---------------------------- Hashing Policies -----------------------------*/
3581
3582/* L2 hash helper */
3583static inline u32 bond_eth_hash(struct sk_buff *skb)
3584{
3585 struct ethhdr *ep, hdr_tmp;
3586
3587 ep = skb_header_pointer(skb, 0, sizeof(hdr_tmp), &hdr_tmp);
3588 if (ep)
3589 return ep->h_dest[5] ^ ep->h_source[5] ^ ep->h_proto;
3590 return 0;
3591}
3592
Olivier Deprez157378f2022-04-04 15:47:50 +02003593static bool bond_flow_ip(struct sk_buff *skb, struct flow_keys *fk,
3594 int *noff, int *proto, bool l34)
3595{
3596 const struct ipv6hdr *iph6;
3597 const struct iphdr *iph;
3598
3599 if (skb->protocol == htons(ETH_P_IP)) {
3600 if (unlikely(!pskb_may_pull(skb, *noff + sizeof(*iph))))
3601 return false;
3602 iph = (const struct iphdr *)(skb->data + *noff);
3603 iph_to_flow_copy_v4addrs(fk, iph);
3604 *noff += iph->ihl << 2;
3605 if (!ip_is_fragment(iph))
3606 *proto = iph->protocol;
3607 } else if (skb->protocol == htons(ETH_P_IPV6)) {
3608 if (unlikely(!pskb_may_pull(skb, *noff + sizeof(*iph6))))
3609 return false;
3610 iph6 = (const struct ipv6hdr *)(skb->data + *noff);
3611 iph_to_flow_copy_v6addrs(fk, iph6);
3612 *noff += sizeof(*iph6);
3613 *proto = iph6->nexthdr;
3614 } else {
3615 return false;
3616 }
3617
3618 if (l34 && *proto >= 0)
3619 fk->ports.ports = skb_flow_get_ports(skb, *noff, *proto);
3620
3621 return true;
3622}
3623
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003624/* Extract the appropriate headers based on bond's xmit policy */
3625static bool bond_flow_dissect(struct bonding *bond, struct sk_buff *skb,
3626 struct flow_keys *fk)
3627{
Olivier Deprez157378f2022-04-04 15:47:50 +02003628 bool l34 = bond->params.xmit_policy == BOND_XMIT_POLICY_LAYER34;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003629 int noff, proto = -1;
3630
Olivier Deprez157378f2022-04-04 15:47:50 +02003631 if (bond->params.xmit_policy > BOND_XMIT_POLICY_LAYER23) {
3632 memset(fk, 0, sizeof(*fk));
3633 return __skb_flow_dissect(NULL, skb, &flow_keys_bonding,
3634 fk, NULL, 0, 0, 0, 0);
3635 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003636
3637 fk->ports.ports = 0;
Olivier Deprez157378f2022-04-04 15:47:50 +02003638 memset(&fk->icmp, 0, sizeof(fk->icmp));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003639 noff = skb_network_offset(skb);
Olivier Deprez157378f2022-04-04 15:47:50 +02003640 if (!bond_flow_ip(skb, fk, &noff, &proto, l34))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003641 return false;
Olivier Deprez157378f2022-04-04 15:47:50 +02003642
3643 /* ICMP error packets contains at least 8 bytes of the header
3644 * of the packet which generated the error. Use this information
3645 * to correlate ICMP error packets within the same flow which
3646 * generated the error.
3647 */
3648 if (proto == IPPROTO_ICMP || proto == IPPROTO_ICMPV6) {
3649 skb_flow_get_icmp_tci(skb, &fk->icmp, skb->data,
3650 skb_transport_offset(skb),
3651 skb_headlen(skb));
3652 if (proto == IPPROTO_ICMP) {
3653 if (!icmp_is_err(fk->icmp.type))
3654 return true;
3655
3656 noff += sizeof(struct icmphdr);
3657 } else if (proto == IPPROTO_ICMPV6) {
3658 if (!icmpv6_is_err(fk->icmp.type))
3659 return true;
3660
3661 noff += sizeof(struct icmp6hdr);
3662 }
3663 return bond_flow_ip(skb, fk, &noff, &proto, l34);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003664 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003665
3666 return true;
3667}
3668
3669/**
3670 * bond_xmit_hash - generate a hash value based on the xmit policy
3671 * @bond: bonding device
3672 * @skb: buffer to use for headers
3673 *
3674 * This function will extract the necessary headers from the skb buffer and use
3675 * them to generate a hash based on the xmit_policy set in the bonding device
3676 */
3677u32 bond_xmit_hash(struct bonding *bond, struct sk_buff *skb)
3678{
3679 struct flow_keys flow;
3680 u32 hash;
3681
3682 if (bond->params.xmit_policy == BOND_XMIT_POLICY_ENCAP34 &&
3683 skb->l4_hash)
3684 return skb->hash;
3685
3686 if (bond->params.xmit_policy == BOND_XMIT_POLICY_LAYER2 ||
3687 !bond_flow_dissect(bond, skb, &flow))
3688 return bond_eth_hash(skb);
3689
3690 if (bond->params.xmit_policy == BOND_XMIT_POLICY_LAYER23 ||
Olivier Deprez157378f2022-04-04 15:47:50 +02003691 bond->params.xmit_policy == BOND_XMIT_POLICY_ENCAP23) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003692 hash = bond_eth_hash(skb);
Olivier Deprez157378f2022-04-04 15:47:50 +02003693 } else {
3694 if (flow.icmp.id)
3695 memcpy(&hash, &flow.icmp, sizeof(hash));
3696 else
3697 memcpy(&hash, &flow.ports.ports, sizeof(hash));
3698 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003699 hash ^= (__force u32)flow_get_u32_dst(&flow) ^
3700 (__force u32)flow_get_u32_src(&flow);
3701 hash ^= (hash >> 16);
3702 hash ^= (hash >> 8);
3703
3704 return hash >> 1;
3705}
3706
3707/*-------------------------- Device entry points ----------------------------*/
3708
3709void bond_work_init_all(struct bonding *bond)
3710{
3711 INIT_DELAYED_WORK(&bond->mcast_work,
3712 bond_resend_igmp_join_requests_delayed);
3713 INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor);
3714 INIT_DELAYED_WORK(&bond->mii_work, bond_mii_monitor);
3715 INIT_DELAYED_WORK(&bond->arp_work, bond_arp_monitor);
3716 INIT_DELAYED_WORK(&bond->ad_work, bond_3ad_state_machine_handler);
3717 INIT_DELAYED_WORK(&bond->slave_arr_work, bond_slave_arr_handler);
3718}
3719
3720static void bond_work_cancel_all(struct bonding *bond)
3721{
3722 cancel_delayed_work_sync(&bond->mii_work);
3723 cancel_delayed_work_sync(&bond->arp_work);
3724 cancel_delayed_work_sync(&bond->alb_work);
3725 cancel_delayed_work_sync(&bond->ad_work);
3726 cancel_delayed_work_sync(&bond->mcast_work);
3727 cancel_delayed_work_sync(&bond->slave_arr_work);
3728}
3729
3730static int bond_open(struct net_device *bond_dev)
3731{
3732 struct bonding *bond = netdev_priv(bond_dev);
3733 struct list_head *iter;
3734 struct slave *slave;
3735
3736 /* reset slave->backup and slave->inactive */
3737 if (bond_has_slaves(bond)) {
3738 bond_for_each_slave(bond, slave, iter) {
3739 if (bond_uses_primary(bond) &&
3740 slave != rcu_access_pointer(bond->curr_active_slave)) {
3741 bond_set_slave_inactive_flags(slave,
3742 BOND_SLAVE_NOTIFY_NOW);
3743 } else if (BOND_MODE(bond) != BOND_MODE_8023AD) {
3744 bond_set_slave_active_flags(slave,
3745 BOND_SLAVE_NOTIFY_NOW);
3746 }
3747 }
3748 }
3749
3750 if (bond_is_lb(bond)) {
3751 /* bond_alb_initialize must be called before the timer
3752 * is started.
3753 */
3754 if (bond_alb_initialize(bond, (BOND_MODE(bond) == BOND_MODE_ALB)))
3755 return -ENOMEM;
3756 if (bond->params.tlb_dynamic_lb || BOND_MODE(bond) == BOND_MODE_ALB)
3757 queue_delayed_work(bond->wq, &bond->alb_work, 0);
3758 }
3759
3760 if (bond->params.miimon) /* link check interval, in milliseconds. */
3761 queue_delayed_work(bond->wq, &bond->mii_work, 0);
3762
3763 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
3764 queue_delayed_work(bond->wq, &bond->arp_work, 0);
3765 bond->recv_probe = bond_arp_rcv;
3766 }
3767
3768 if (BOND_MODE(bond) == BOND_MODE_8023AD) {
3769 queue_delayed_work(bond->wq, &bond->ad_work, 0);
3770 /* register to receive LACPDUs */
3771 bond->recv_probe = bond_3ad_lacpdu_recv;
3772 bond_3ad_initiate_agg_selection(bond, 1);
3773 }
3774
3775 if (bond_mode_can_use_xmit_hash(bond))
3776 bond_update_slave_arr(bond, NULL);
3777
3778 return 0;
3779}
3780
3781static int bond_close(struct net_device *bond_dev)
3782{
3783 struct bonding *bond = netdev_priv(bond_dev);
3784
3785 bond_work_cancel_all(bond);
3786 bond->send_peer_notif = 0;
3787 if (bond_is_lb(bond))
3788 bond_alb_deinitialize(bond);
3789 bond->recv_probe = NULL;
3790
3791 return 0;
3792}
3793
3794/* fold stats, assuming all rtnl_link_stats64 fields are u64, but
3795 * that some drivers can provide 32bit values only.
3796 */
3797static void bond_fold_stats(struct rtnl_link_stats64 *_res,
3798 const struct rtnl_link_stats64 *_new,
3799 const struct rtnl_link_stats64 *_old)
3800{
3801 const u64 *new = (const u64 *)_new;
3802 const u64 *old = (const u64 *)_old;
3803 u64 *res = (u64 *)_res;
3804 int i;
3805
3806 for (i = 0; i < sizeof(*_res) / sizeof(u64); i++) {
3807 u64 nv = new[i];
3808 u64 ov = old[i];
3809 s64 delta = nv - ov;
3810
3811 /* detects if this particular field is 32bit only */
3812 if (((nv | ov) >> 32) == 0)
3813 delta = (s64)(s32)((u32)nv - (u32)ov);
3814
3815 /* filter anomalies, some drivers reset their stats
3816 * at down/up events.
3817 */
3818 if (delta > 0)
3819 res[i] += delta;
3820 }
3821}
3822
Olivier Deprez0e641232021-09-23 10:07:05 +02003823#ifdef CONFIG_LOCKDEP
3824static int bond_get_lowest_level_rcu(struct net_device *dev)
3825{
3826 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
3827 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
3828 int cur = 0, max = 0;
3829
3830 now = dev;
3831 iter = &dev->adj_list.lower;
3832
3833 while (1) {
3834 next = NULL;
3835 while (1) {
3836 ldev = netdev_next_lower_dev_rcu(now, &iter);
3837 if (!ldev)
3838 break;
3839
3840 next = ldev;
3841 niter = &ldev->adj_list.lower;
3842 dev_stack[cur] = now;
3843 iter_stack[cur++] = iter;
3844 if (max <= cur)
3845 max = cur;
3846 break;
3847 }
3848
3849 if (!next) {
3850 if (!cur)
3851 return max;
3852 next = dev_stack[--cur];
3853 niter = iter_stack[cur];
3854 }
3855
3856 now = next;
3857 iter = niter;
3858 }
3859
3860 return max;
3861}
3862#endif
3863
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003864static void bond_get_stats(struct net_device *bond_dev,
3865 struct rtnl_link_stats64 *stats)
3866{
3867 struct bonding *bond = netdev_priv(bond_dev);
3868 struct rtnl_link_stats64 temp;
3869 struct list_head *iter;
3870 struct slave *slave;
Olivier Deprez0e641232021-09-23 10:07:05 +02003871 int nest_level = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003872
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003873
3874 rcu_read_lock();
Olivier Deprez0e641232021-09-23 10:07:05 +02003875#ifdef CONFIG_LOCKDEP
3876 nest_level = bond_get_lowest_level_rcu(bond_dev);
3877#endif
3878
3879 spin_lock_nested(&bond->stats_lock, nest_level);
3880 memcpy(stats, &bond->bond_stats, sizeof(*stats));
3881
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003882 bond_for_each_slave_rcu(bond, slave, iter) {
3883 const struct rtnl_link_stats64 *new =
3884 dev_get_stats(slave->dev, &temp);
3885
3886 bond_fold_stats(stats, new, &slave->slave_stats);
3887
3888 /* save off the slave stats for the next run */
3889 memcpy(&slave->slave_stats, new, sizeof(*new));
3890 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003891
3892 memcpy(&bond->bond_stats, stats, sizeof(*stats));
3893 spin_unlock(&bond->stats_lock);
Olivier Deprez0e641232021-09-23 10:07:05 +02003894 rcu_read_unlock();
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003895}
3896
3897static int bond_do_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd)
3898{
3899 struct bonding *bond = netdev_priv(bond_dev);
3900 struct net_device *slave_dev = NULL;
3901 struct ifbond k_binfo;
3902 struct ifbond __user *u_binfo = NULL;
3903 struct ifslave k_sinfo;
3904 struct ifslave __user *u_sinfo = NULL;
3905 struct mii_ioctl_data *mii = NULL;
3906 struct bond_opt_value newval;
3907 struct net *net;
3908 int res = 0;
3909
3910 netdev_dbg(bond_dev, "bond_ioctl: cmd=%d\n", cmd);
3911
3912 switch (cmd) {
3913 case SIOCGMIIPHY:
3914 mii = if_mii(ifr);
3915 if (!mii)
3916 return -EINVAL;
3917
3918 mii->phy_id = 0;
Olivier Deprez157378f2022-04-04 15:47:50 +02003919 fallthrough;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003920 case SIOCGMIIREG:
3921 /* We do this again just in case we were called by SIOCGMIIREG
3922 * instead of SIOCGMIIPHY.
3923 */
3924 mii = if_mii(ifr);
3925 if (!mii)
3926 return -EINVAL;
3927
3928 if (mii->reg_num == 1) {
3929 mii->val_out = 0;
3930 if (netif_carrier_ok(bond->dev))
3931 mii->val_out = BMSR_LSTATUS;
3932 }
3933
3934 return 0;
3935 case BOND_INFO_QUERY_OLD:
3936 case SIOCBONDINFOQUERY:
3937 u_binfo = (struct ifbond __user *)ifr->ifr_data;
3938
3939 if (copy_from_user(&k_binfo, u_binfo, sizeof(ifbond)))
3940 return -EFAULT;
3941
3942 bond_info_query(bond_dev, &k_binfo);
3943 if (copy_to_user(u_binfo, &k_binfo, sizeof(ifbond)))
3944 return -EFAULT;
3945
3946 return 0;
3947 case BOND_SLAVE_INFO_QUERY_OLD:
3948 case SIOCBONDSLAVEINFOQUERY:
3949 u_sinfo = (struct ifslave __user *)ifr->ifr_data;
3950
3951 if (copy_from_user(&k_sinfo, u_sinfo, sizeof(ifslave)))
3952 return -EFAULT;
3953
3954 res = bond_slave_info_query(bond_dev, &k_sinfo);
3955 if (res == 0 &&
3956 copy_to_user(u_sinfo, &k_sinfo, sizeof(ifslave)))
3957 return -EFAULT;
3958
3959 return res;
3960 default:
3961 break;
3962 }
3963
3964 net = dev_net(bond_dev);
3965
3966 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
3967 return -EPERM;
3968
3969 slave_dev = __dev_get_by_name(net, ifr->ifr_slave);
3970
David Brazdil0f672f62019-12-10 10:32:29 +00003971 slave_dbg(bond_dev, slave_dev, "slave_dev=%p:\n", slave_dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003972
3973 if (!slave_dev)
3974 return -ENODEV;
3975
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003976 switch (cmd) {
3977 case BOND_ENSLAVE_OLD:
3978 case SIOCBONDENSLAVE:
3979 res = bond_enslave(bond_dev, slave_dev, NULL);
3980 break;
3981 case BOND_RELEASE_OLD:
3982 case SIOCBONDRELEASE:
3983 res = bond_release(bond_dev, slave_dev);
3984 break;
3985 case BOND_SETHWADDR_OLD:
3986 case SIOCBONDSETHWADDR:
David Brazdil0f672f62019-12-10 10:32:29 +00003987 res = bond_set_dev_addr(bond_dev, slave_dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003988 break;
3989 case BOND_CHANGE_ACTIVE_OLD:
3990 case SIOCBONDCHANGEACTIVE:
3991 bond_opt_initstr(&newval, slave_dev->name);
3992 res = __bond_opt_set_notify(bond, BOND_OPT_ACTIVE_SLAVE,
3993 &newval);
3994 break;
3995 default:
3996 res = -EOPNOTSUPP;
3997 }
3998
3999 return res;
4000}
4001
4002static void bond_change_rx_flags(struct net_device *bond_dev, int change)
4003{
4004 struct bonding *bond = netdev_priv(bond_dev);
4005
4006 if (change & IFF_PROMISC)
4007 bond_set_promiscuity(bond,
4008 bond_dev->flags & IFF_PROMISC ? 1 : -1);
4009
4010 if (change & IFF_ALLMULTI)
4011 bond_set_allmulti(bond,
4012 bond_dev->flags & IFF_ALLMULTI ? 1 : -1);
4013}
4014
4015static void bond_set_rx_mode(struct net_device *bond_dev)
4016{
4017 struct bonding *bond = netdev_priv(bond_dev);
4018 struct list_head *iter;
4019 struct slave *slave;
4020
4021 rcu_read_lock();
4022 if (bond_uses_primary(bond)) {
4023 slave = rcu_dereference(bond->curr_active_slave);
4024 if (slave) {
4025 dev_uc_sync(slave->dev, bond_dev);
4026 dev_mc_sync(slave->dev, bond_dev);
4027 }
4028 } else {
4029 bond_for_each_slave_rcu(bond, slave, iter) {
4030 dev_uc_sync_multiple(slave->dev, bond_dev);
4031 dev_mc_sync_multiple(slave->dev, bond_dev);
4032 }
4033 }
4034 rcu_read_unlock();
4035}
4036
4037static int bond_neigh_init(struct neighbour *n)
4038{
4039 struct bonding *bond = netdev_priv(n->dev);
4040 const struct net_device_ops *slave_ops;
4041 struct neigh_parms parms;
4042 struct slave *slave;
Olivier Deprez0e641232021-09-23 10:07:05 +02004043 int ret = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004044
Olivier Deprez0e641232021-09-23 10:07:05 +02004045 rcu_read_lock();
4046 slave = bond_first_slave_rcu(bond);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004047 if (!slave)
Olivier Deprez0e641232021-09-23 10:07:05 +02004048 goto out;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004049 slave_ops = slave->dev->netdev_ops;
4050 if (!slave_ops->ndo_neigh_setup)
Olivier Deprez0e641232021-09-23 10:07:05 +02004051 goto out;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004052
Olivier Deprez0e641232021-09-23 10:07:05 +02004053 /* TODO: find another way [1] to implement this.
4054 * Passing a zeroed structure is fragile,
4055 * but at least we do not pass garbage.
4056 *
4057 * [1] One way would be that ndo_neigh_setup() never touch
4058 * struct neigh_parms, but propagate the new neigh_setup()
4059 * back to ___neigh_create() / neigh_parms_alloc()
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004060 */
Olivier Deprez0e641232021-09-23 10:07:05 +02004061 memset(&parms, 0, sizeof(parms));
4062 ret = slave_ops->ndo_neigh_setup(slave->dev, &parms);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004063
Olivier Deprez0e641232021-09-23 10:07:05 +02004064 if (ret)
4065 goto out;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004066
Olivier Deprez0e641232021-09-23 10:07:05 +02004067 if (parms.neigh_setup)
4068 ret = parms.neigh_setup(n);
4069out:
4070 rcu_read_unlock();
4071 return ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004072}
4073
4074/* The bonding ndo_neigh_setup is called at init time beofre any
4075 * slave exists. So we must declare proxy setup function which will
4076 * be used at run time to resolve the actual slave neigh param setup.
4077 *
4078 * It's also called by master devices (such as vlans) to setup their
4079 * underlying devices. In that case - do nothing, we're already set up from
4080 * our init.
4081 */
4082static int bond_neigh_setup(struct net_device *dev,
4083 struct neigh_parms *parms)
4084{
4085 /* modify only our neigh_parms */
4086 if (parms->dev == dev)
4087 parms->neigh_setup = bond_neigh_init;
4088
4089 return 0;
4090}
4091
4092/* Change the MTU of all of a master's slaves to match the master */
4093static int bond_change_mtu(struct net_device *bond_dev, int new_mtu)
4094{
4095 struct bonding *bond = netdev_priv(bond_dev);
4096 struct slave *slave, *rollback_slave;
4097 struct list_head *iter;
4098 int res = 0;
4099
4100 netdev_dbg(bond_dev, "bond=%p, new_mtu=%d\n", bond, new_mtu);
4101
4102 bond_for_each_slave(bond, slave, iter) {
David Brazdil0f672f62019-12-10 10:32:29 +00004103 slave_dbg(bond_dev, slave->dev, "s %p c_m %p\n",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004104 slave, slave->dev->netdev_ops->ndo_change_mtu);
4105
4106 res = dev_set_mtu(slave->dev, new_mtu);
4107
4108 if (res) {
4109 /* If we failed to set the slave's mtu to the new value
4110 * we must abort the operation even in ACTIVE_BACKUP
4111 * mode, because if we allow the backup slaves to have
4112 * different mtu values than the active slave we'll
4113 * need to change their mtu when doing a failover. That
4114 * means changing their mtu from timer context, which
4115 * is probably not a good idea.
4116 */
David Brazdil0f672f62019-12-10 10:32:29 +00004117 slave_dbg(bond_dev, slave->dev, "err %d setting mtu to %d\n",
4118 res, new_mtu);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004119 goto unwind;
4120 }
4121 }
4122
4123 bond_dev->mtu = new_mtu;
4124
4125 return 0;
4126
4127unwind:
4128 /* unwind from head to the slave that failed */
4129 bond_for_each_slave(bond, rollback_slave, iter) {
4130 int tmp_res;
4131
4132 if (rollback_slave == slave)
4133 break;
4134
4135 tmp_res = dev_set_mtu(rollback_slave->dev, bond_dev->mtu);
David Brazdil0f672f62019-12-10 10:32:29 +00004136 if (tmp_res)
4137 slave_dbg(bond_dev, rollback_slave->dev, "unwind err %d\n",
4138 tmp_res);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004139 }
4140
4141 return res;
4142}
4143
4144/* Change HW address
4145 *
4146 * Note that many devices must be down to change the HW address, and
4147 * downing the master releases all slaves. We can make bonds full of
4148 * bonding devices to test this, however.
4149 */
4150static int bond_set_mac_address(struct net_device *bond_dev, void *addr)
4151{
4152 struct bonding *bond = netdev_priv(bond_dev);
4153 struct slave *slave, *rollback_slave;
4154 struct sockaddr_storage *ss = addr, tmp_ss;
4155 struct list_head *iter;
4156 int res = 0;
4157
4158 if (BOND_MODE(bond) == BOND_MODE_ALB)
4159 return bond_alb_set_mac_address(bond_dev, addr);
4160
4161
David Brazdil0f672f62019-12-10 10:32:29 +00004162 netdev_dbg(bond_dev, "%s: bond=%p\n", __func__, bond);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004163
4164 /* If fail_over_mac is enabled, do nothing and return success.
4165 * Returning an error causes ifenslave to fail.
4166 */
4167 if (bond->params.fail_over_mac &&
4168 BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP)
4169 return 0;
4170
4171 if (!is_valid_ether_addr(ss->__data))
4172 return -EADDRNOTAVAIL;
4173
4174 bond_for_each_slave(bond, slave, iter) {
David Brazdil0f672f62019-12-10 10:32:29 +00004175 slave_dbg(bond_dev, slave->dev, "%s: slave=%p\n",
4176 __func__, slave);
4177 res = dev_set_mac_address(slave->dev, addr, NULL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004178 if (res) {
4179 /* TODO: consider downing the slave
4180 * and retry ?
4181 * User should expect communications
4182 * breakage anyway until ARP finish
4183 * updating, so...
4184 */
David Brazdil0f672f62019-12-10 10:32:29 +00004185 slave_dbg(bond_dev, slave->dev, "%s: err %d\n",
4186 __func__, res);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004187 goto unwind;
4188 }
4189 }
4190
4191 /* success */
4192 memcpy(bond_dev->dev_addr, ss->__data, bond_dev->addr_len);
4193 return 0;
4194
4195unwind:
4196 memcpy(tmp_ss.__data, bond_dev->dev_addr, bond_dev->addr_len);
4197 tmp_ss.ss_family = bond_dev->type;
4198
4199 /* unwind from head to the slave that failed */
4200 bond_for_each_slave(bond, rollback_slave, iter) {
4201 int tmp_res;
4202
4203 if (rollback_slave == slave)
4204 break;
4205
4206 tmp_res = dev_set_mac_address(rollback_slave->dev,
David Brazdil0f672f62019-12-10 10:32:29 +00004207 (struct sockaddr *)&tmp_ss, NULL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004208 if (tmp_res) {
David Brazdil0f672f62019-12-10 10:32:29 +00004209 slave_dbg(bond_dev, rollback_slave->dev, "%s: unwind err %d\n",
4210 __func__, tmp_res);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004211 }
4212 }
4213
4214 return res;
4215}
4216
4217/**
Olivier Deprez157378f2022-04-04 15:47:50 +02004218 * bond_get_slave_by_id - get xmit slave with slave_id
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004219 * @bond: bonding device that is transmitting
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004220 * @slave_id: slave id up to slave_cnt-1 through which to transmit
4221 *
Olivier Deprez157378f2022-04-04 15:47:50 +02004222 * This function tries to get slave with slave_id but in case
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004223 * it fails, it tries to find the first available slave for transmission.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004224 */
Olivier Deprez157378f2022-04-04 15:47:50 +02004225static struct slave *bond_get_slave_by_id(struct bonding *bond,
4226 int slave_id)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004227{
4228 struct list_head *iter;
4229 struct slave *slave;
4230 int i = slave_id;
4231
4232 /* Here we start from the slave with slave_id */
4233 bond_for_each_slave_rcu(bond, slave, iter) {
4234 if (--i < 0) {
Olivier Deprez157378f2022-04-04 15:47:50 +02004235 if (bond_slave_can_tx(slave))
4236 return slave;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004237 }
4238 }
4239
4240 /* Here we start from the first slave up to slave_id */
4241 i = slave_id;
4242 bond_for_each_slave_rcu(bond, slave, iter) {
4243 if (--i < 0)
4244 break;
Olivier Deprez157378f2022-04-04 15:47:50 +02004245 if (bond_slave_can_tx(slave))
4246 return slave;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004247 }
4248 /* no slave that can tx has been found */
Olivier Deprez157378f2022-04-04 15:47:50 +02004249 return NULL;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004250}
4251
4252/**
4253 * bond_rr_gen_slave_id - generate slave id based on packets_per_slave
4254 * @bond: bonding device to use
4255 *
4256 * Based on the value of the bonding device's packets_per_slave parameter
4257 * this function generates a slave id, which is usually used as the next
4258 * slave to transmit through.
4259 */
4260static u32 bond_rr_gen_slave_id(struct bonding *bond)
4261{
4262 u32 slave_id;
4263 struct reciprocal_value reciprocal_packets_per_slave;
4264 int packets_per_slave = bond->params.packets_per_slave;
4265
4266 switch (packets_per_slave) {
4267 case 0:
4268 slave_id = prandom_u32();
4269 break;
4270 case 1:
4271 slave_id = bond->rr_tx_counter;
4272 break;
4273 default:
4274 reciprocal_packets_per_slave =
4275 bond->params.reciprocal_packets_per_slave;
4276 slave_id = reciprocal_divide(bond->rr_tx_counter,
4277 reciprocal_packets_per_slave);
4278 break;
4279 }
4280 bond->rr_tx_counter++;
4281
4282 return slave_id;
4283}
4284
Olivier Deprez157378f2022-04-04 15:47:50 +02004285static struct slave *bond_xmit_roundrobin_slave_get(struct bonding *bond,
4286 struct sk_buff *skb)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004287{
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004288 struct slave *slave;
David Brazdil0f672f62019-12-10 10:32:29 +00004289 int slave_cnt;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004290 u32 slave_id;
4291
4292 /* Start with the curr_active_slave that joined the bond as the
4293 * default for sending IGMP traffic. For failover purposes one
4294 * needs to maintain some consistency for the interface that will
4295 * send the join/membership reports. The curr_active_slave found
4296 * will send all of this type of traffic.
4297 */
David Brazdil0f672f62019-12-10 10:32:29 +00004298 if (skb->protocol == htons(ETH_P_IP)) {
4299 int noff = skb_network_offset(skb);
4300 struct iphdr *iph;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004301
David Brazdil0f672f62019-12-10 10:32:29 +00004302 if (unlikely(!pskb_may_pull(skb, noff + sizeof(*iph))))
4303 goto non_igmp;
4304
4305 iph = ip_hdr(skb);
4306 if (iph->protocol == IPPROTO_IGMP) {
4307 slave = rcu_dereference(bond->curr_active_slave);
4308 if (slave)
Olivier Deprez157378f2022-04-04 15:47:50 +02004309 return slave;
4310 return bond_get_slave_by_id(bond, 0);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004311 }
4312 }
4313
David Brazdil0f672f62019-12-10 10:32:29 +00004314non_igmp:
4315 slave_cnt = READ_ONCE(bond->slave_cnt);
4316 if (likely(slave_cnt)) {
Olivier Deprez157378f2022-04-04 15:47:50 +02004317 slave_id = bond_rr_gen_slave_id(bond) % slave_cnt;
4318 return bond_get_slave_by_id(bond, slave_id);
David Brazdil0f672f62019-12-10 10:32:29 +00004319 }
Olivier Deprez157378f2022-04-04 15:47:50 +02004320 return NULL;
4321}
4322
4323static netdev_tx_t bond_xmit_roundrobin(struct sk_buff *skb,
4324 struct net_device *bond_dev)
4325{
4326 struct bonding *bond = netdev_priv(bond_dev);
4327 struct slave *slave;
4328
4329 slave = bond_xmit_roundrobin_slave_get(bond, skb);
4330 if (likely(slave))
4331 return bond_dev_queue_xmit(bond, skb, slave->dev);
4332
4333 return bond_tx_drop(bond_dev, skb);
4334}
4335
4336static struct slave *bond_xmit_activebackup_slave_get(struct bonding *bond,
4337 struct sk_buff *skb)
4338{
4339 return rcu_dereference(bond->curr_active_slave);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004340}
4341
4342/* In active-backup mode, we know that bond->curr_active_slave is always valid if
4343 * the bond has a usable interface.
4344 */
4345static netdev_tx_t bond_xmit_activebackup(struct sk_buff *skb,
4346 struct net_device *bond_dev)
4347{
4348 struct bonding *bond = netdev_priv(bond_dev);
4349 struct slave *slave;
4350
Olivier Deprez157378f2022-04-04 15:47:50 +02004351 slave = bond_xmit_activebackup_slave_get(bond, skb);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004352 if (slave)
Olivier Deprez157378f2022-04-04 15:47:50 +02004353 return bond_dev_queue_xmit(bond, skb, slave->dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004354
Olivier Deprez157378f2022-04-04 15:47:50 +02004355 return bond_tx_drop(bond_dev, skb);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004356}
4357
4358/* Use this to update slave_array when (a) it's not appropriate to update
4359 * slave_array right away (note that update_slave_array() may sleep)
4360 * and / or (b) RTNL is not held.
4361 */
4362void bond_slave_arr_work_rearm(struct bonding *bond, unsigned long delay)
4363{
4364 queue_delayed_work(bond->wq, &bond->slave_arr_work, delay);
4365}
4366
4367/* Slave array work handler. Holds only RTNL */
4368static void bond_slave_arr_handler(struct work_struct *work)
4369{
4370 struct bonding *bond = container_of(work, struct bonding,
4371 slave_arr_work.work);
4372 int ret;
4373
4374 if (!rtnl_trylock())
4375 goto err;
4376
4377 ret = bond_update_slave_arr(bond, NULL);
4378 rtnl_unlock();
4379 if (ret) {
4380 pr_warn_ratelimited("Failed to update slave array from WT\n");
4381 goto err;
4382 }
4383 return;
4384
4385err:
4386 bond_slave_arr_work_rearm(bond, 1);
4387}
4388
Olivier Deprez157378f2022-04-04 15:47:50 +02004389static void bond_skip_slave(struct bond_up_slave *slaves,
4390 struct slave *skipslave)
4391{
4392 int idx;
4393
4394 /* Rare situation where caller has asked to skip a specific
4395 * slave but allocation failed (most likely!). BTW this is
4396 * only possible when the call is initiated from
4397 * __bond_release_one(). In this situation; overwrite the
4398 * skipslave entry in the array with the last entry from the
4399 * array to avoid a situation where the xmit path may choose
4400 * this to-be-skipped slave to send a packet out.
4401 */
4402 for (idx = 0; slaves && idx < slaves->count; idx++) {
4403 if (skipslave == slaves->arr[idx]) {
4404 slaves->arr[idx] =
4405 slaves->arr[slaves->count - 1];
4406 slaves->count--;
4407 break;
4408 }
4409 }
4410}
4411
4412static void bond_set_slave_arr(struct bonding *bond,
4413 struct bond_up_slave *usable_slaves,
4414 struct bond_up_slave *all_slaves)
4415{
4416 struct bond_up_slave *usable, *all;
4417
4418 usable = rtnl_dereference(bond->usable_slaves);
4419 rcu_assign_pointer(bond->usable_slaves, usable_slaves);
4420 kfree_rcu(usable, rcu);
4421
4422 all = rtnl_dereference(bond->all_slaves);
4423 rcu_assign_pointer(bond->all_slaves, all_slaves);
4424 kfree_rcu(all, rcu);
4425}
4426
4427static void bond_reset_slave_arr(struct bonding *bond)
4428{
4429 struct bond_up_slave *usable, *all;
4430
4431 usable = rtnl_dereference(bond->usable_slaves);
4432 if (usable) {
4433 RCU_INIT_POINTER(bond->usable_slaves, NULL);
4434 kfree_rcu(usable, rcu);
4435 }
4436
4437 all = rtnl_dereference(bond->all_slaves);
4438 if (all) {
4439 RCU_INIT_POINTER(bond->all_slaves, NULL);
4440 kfree_rcu(all, rcu);
4441 }
4442}
4443
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004444/* Build the usable slaves array in control path for modes that use xmit-hash
4445 * to determine the slave interface -
4446 * (a) BOND_MODE_8023AD
4447 * (b) BOND_MODE_XOR
4448 * (c) (BOND_MODE_TLB || BOND_MODE_ALB) && tlb_dynamic_lb == 0
4449 *
4450 * The caller is expected to hold RTNL only and NO other lock!
4451 */
4452int bond_update_slave_arr(struct bonding *bond, struct slave *skipslave)
4453{
Olivier Deprez157378f2022-04-04 15:47:50 +02004454 struct bond_up_slave *usable_slaves = NULL, *all_slaves = NULL;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004455 struct slave *slave;
4456 struct list_head *iter;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004457 int agg_id = 0;
4458 int ret = 0;
4459
4460#ifdef CONFIG_LOCKDEP
4461 WARN_ON(lockdep_is_held(&bond->mode_lock));
4462#endif
4463
Olivier Deprez157378f2022-04-04 15:47:50 +02004464 usable_slaves = kzalloc(struct_size(usable_slaves, arr,
4465 bond->slave_cnt), GFP_KERNEL);
4466 all_slaves = kzalloc(struct_size(all_slaves, arr,
4467 bond->slave_cnt), GFP_KERNEL);
4468 if (!usable_slaves || !all_slaves) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004469 ret = -ENOMEM;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004470 goto out;
4471 }
4472 if (BOND_MODE(bond) == BOND_MODE_8023AD) {
4473 struct ad_info ad_info;
4474
4475 if (bond_3ad_get_active_agg_info(bond, &ad_info)) {
4476 pr_debug("bond_3ad_get_active_agg_info failed\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004477 /* No active aggragator means it's not safe to use
4478 * the previous array.
4479 */
Olivier Deprez157378f2022-04-04 15:47:50 +02004480 bond_reset_slave_arr(bond);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004481 goto out;
4482 }
4483 agg_id = ad_info.aggregator_id;
4484 }
4485 bond_for_each_slave(bond, slave, iter) {
Olivier Deprez157378f2022-04-04 15:47:50 +02004486 if (skipslave == slave)
4487 continue;
4488
4489 all_slaves->arr[all_slaves->count++] = slave;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004490 if (BOND_MODE(bond) == BOND_MODE_8023AD) {
4491 struct aggregator *agg;
4492
4493 agg = SLAVE_AD_INFO(slave)->port.aggregator;
4494 if (!agg || agg->aggregator_identifier != agg_id)
4495 continue;
4496 }
4497 if (!bond_slave_can_tx(slave))
4498 continue;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004499
David Brazdil0f672f62019-12-10 10:32:29 +00004500 slave_dbg(bond->dev, slave->dev, "Adding slave to tx hash array[%d]\n",
Olivier Deprez157378f2022-04-04 15:47:50 +02004501 usable_slaves->count);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004502
Olivier Deprez157378f2022-04-04 15:47:50 +02004503 usable_slaves->arr[usable_slaves->count++] = slave;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004504 }
4505
Olivier Deprez157378f2022-04-04 15:47:50 +02004506 bond_set_slave_arr(bond, usable_slaves, all_slaves);
4507 return ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004508out:
4509 if (ret != 0 && skipslave) {
Olivier Deprez157378f2022-04-04 15:47:50 +02004510 bond_skip_slave(rtnl_dereference(bond->all_slaves),
4511 skipslave);
4512 bond_skip_slave(rtnl_dereference(bond->usable_slaves),
4513 skipslave);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004514 }
Olivier Deprez157378f2022-04-04 15:47:50 +02004515 kfree_rcu(all_slaves, rcu);
4516 kfree_rcu(usable_slaves, rcu);
4517
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004518 return ret;
4519}
4520
Olivier Deprez157378f2022-04-04 15:47:50 +02004521static struct slave *bond_xmit_3ad_xor_slave_get(struct bonding *bond,
4522 struct sk_buff *skb,
4523 struct bond_up_slave *slaves)
4524{
4525 struct slave *slave;
4526 unsigned int count;
4527 u32 hash;
4528
4529 hash = bond_xmit_hash(bond, skb);
4530 count = slaves ? READ_ONCE(slaves->count) : 0;
4531 if (unlikely(!count))
4532 return NULL;
4533
4534 slave = slaves->arr[hash % count];
4535 return slave;
4536}
4537
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004538/* Use this Xmit function for 3AD as well as XOR modes. The current
4539 * usable slave array is formed in the control path. The xmit function
4540 * just calculates hash and sends the packet out.
4541 */
4542static netdev_tx_t bond_3ad_xor_xmit(struct sk_buff *skb,
4543 struct net_device *dev)
4544{
4545 struct bonding *bond = netdev_priv(dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004546 struct bond_up_slave *slaves;
Olivier Deprez157378f2022-04-04 15:47:50 +02004547 struct slave *slave;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004548
Olivier Deprez157378f2022-04-04 15:47:50 +02004549 slaves = rcu_dereference(bond->usable_slaves);
4550 slave = bond_xmit_3ad_xor_slave_get(bond, skb, slaves);
4551 if (likely(slave))
4552 return bond_dev_queue_xmit(bond, skb, slave->dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004553
Olivier Deprez157378f2022-04-04 15:47:50 +02004554 return bond_tx_drop(dev, skb);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004555}
4556
4557/* in broadcast mode, we send everything to all usable interfaces. */
4558static netdev_tx_t bond_xmit_broadcast(struct sk_buff *skb,
4559 struct net_device *bond_dev)
4560{
4561 struct bonding *bond = netdev_priv(bond_dev);
4562 struct slave *slave = NULL;
4563 struct list_head *iter;
Olivier Deprez157378f2022-04-04 15:47:50 +02004564 bool xmit_suc = false;
4565 bool skb_used = false;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004566
4567 bond_for_each_slave_rcu(bond, slave, iter) {
Olivier Deprez157378f2022-04-04 15:47:50 +02004568 struct sk_buff *skb2;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004569
Olivier Deprez157378f2022-04-04 15:47:50 +02004570 if (!(bond_slave_is_up(slave) && slave->link == BOND_LINK_UP))
4571 continue;
4572
4573 if (bond_is_last_slave(bond, slave)) {
4574 skb2 = skb;
4575 skb_used = true;
4576 } else {
4577 skb2 = skb_clone(skb, GFP_ATOMIC);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004578 if (!skb2) {
4579 net_err_ratelimited("%s: Error: %s: skb_clone() failed\n",
4580 bond_dev->name, __func__);
4581 continue;
4582 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004583 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004584
Olivier Deprez157378f2022-04-04 15:47:50 +02004585 if (bond_dev_queue_xmit(bond, skb2, slave->dev) == NETDEV_TX_OK)
4586 xmit_suc = true;
4587 }
4588
4589 if (!skb_used)
4590 dev_kfree_skb_any(skb);
4591
4592 if (xmit_suc)
4593 return NETDEV_TX_OK;
4594
4595 atomic_long_inc(&bond_dev->tx_dropped);
4596 return NET_XMIT_DROP;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004597}
4598
4599/*------------------------- Device initialization ---------------------------*/
4600
4601/* Lookup the slave that corresponds to a qid */
4602static inline int bond_slave_override(struct bonding *bond,
4603 struct sk_buff *skb)
4604{
4605 struct slave *slave = NULL;
4606 struct list_head *iter;
4607
4608 if (!skb_rx_queue_recorded(skb))
4609 return 1;
4610
4611 /* Find out if any slaves have the same mapping as this skb. */
4612 bond_for_each_slave_rcu(bond, slave, iter) {
4613 if (slave->queue_id == skb_get_queue_mapping(skb)) {
4614 if (bond_slave_is_up(slave) &&
4615 slave->link == BOND_LINK_UP) {
4616 bond_dev_queue_xmit(bond, skb, slave->dev);
4617 return 0;
4618 }
4619 /* If the slave isn't UP, use default transmit policy. */
4620 break;
4621 }
4622 }
4623
4624 return 1;
4625}
4626
4627
4628static u16 bond_select_queue(struct net_device *dev, struct sk_buff *skb,
David Brazdil0f672f62019-12-10 10:32:29 +00004629 struct net_device *sb_dev)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004630{
4631 /* This helper function exists to help dev_pick_tx get the correct
4632 * destination queue. Using a helper function skips a call to
4633 * skb_tx_hash and will put the skbs in the queue we expect on their
4634 * way down to the bonding driver.
4635 */
4636 u16 txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) : 0;
4637
4638 /* Save the original txq to restore before passing to the driver */
4639 qdisc_skb_cb(skb)->slave_dev_queue_mapping = skb_get_queue_mapping(skb);
4640
4641 if (unlikely(txq >= dev->real_num_tx_queues)) {
4642 do {
4643 txq -= dev->real_num_tx_queues;
4644 } while (txq >= dev->real_num_tx_queues);
4645 }
4646 return txq;
4647}
4648
Olivier Deprez157378f2022-04-04 15:47:50 +02004649static struct net_device *bond_xmit_get_slave(struct net_device *master_dev,
4650 struct sk_buff *skb,
4651 bool all_slaves)
4652{
4653 struct bonding *bond = netdev_priv(master_dev);
4654 struct bond_up_slave *slaves;
4655 struct slave *slave = NULL;
4656
4657 switch (BOND_MODE(bond)) {
4658 case BOND_MODE_ROUNDROBIN:
4659 slave = bond_xmit_roundrobin_slave_get(bond, skb);
4660 break;
4661 case BOND_MODE_ACTIVEBACKUP:
4662 slave = bond_xmit_activebackup_slave_get(bond, skb);
4663 break;
4664 case BOND_MODE_8023AD:
4665 case BOND_MODE_XOR:
4666 if (all_slaves)
4667 slaves = rcu_dereference(bond->all_slaves);
4668 else
4669 slaves = rcu_dereference(bond->usable_slaves);
4670 slave = bond_xmit_3ad_xor_slave_get(bond, skb, slaves);
4671 break;
4672 case BOND_MODE_BROADCAST:
4673 break;
4674 case BOND_MODE_ALB:
4675 slave = bond_xmit_alb_slave_get(bond, skb);
4676 break;
4677 case BOND_MODE_TLB:
4678 slave = bond_xmit_tlb_slave_get(bond, skb);
4679 break;
4680 default:
4681 /* Should never happen, mode already checked */
4682 WARN_ONCE(true, "Unknown bonding mode");
4683 break;
4684 }
4685
4686 if (slave)
4687 return slave->dev;
4688 return NULL;
4689}
4690
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004691static netdev_tx_t __bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
4692{
4693 struct bonding *bond = netdev_priv(dev);
4694
4695 if (bond_should_override_tx_queue(bond) &&
4696 !bond_slave_override(bond, skb))
4697 return NETDEV_TX_OK;
4698
4699 switch (BOND_MODE(bond)) {
4700 case BOND_MODE_ROUNDROBIN:
4701 return bond_xmit_roundrobin(skb, dev);
4702 case BOND_MODE_ACTIVEBACKUP:
4703 return bond_xmit_activebackup(skb, dev);
4704 case BOND_MODE_8023AD:
4705 case BOND_MODE_XOR:
4706 return bond_3ad_xor_xmit(skb, dev);
4707 case BOND_MODE_BROADCAST:
4708 return bond_xmit_broadcast(skb, dev);
4709 case BOND_MODE_ALB:
4710 return bond_alb_xmit(skb, dev);
4711 case BOND_MODE_TLB:
4712 return bond_tlb_xmit(skb, dev);
4713 default:
4714 /* Should never happen, mode already checked */
4715 netdev_err(dev, "Unknown bonding mode %d\n", BOND_MODE(bond));
4716 WARN_ON_ONCE(1);
Olivier Deprez157378f2022-04-04 15:47:50 +02004717 return bond_tx_drop(dev, skb);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004718 }
4719}
4720
4721static netdev_tx_t bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
4722{
4723 struct bonding *bond = netdev_priv(dev);
4724 netdev_tx_t ret = NETDEV_TX_OK;
4725
4726 /* If we risk deadlock from transmitting this in the
4727 * netpoll path, tell netpoll to queue the frame for later tx
4728 */
4729 if (unlikely(is_netpoll_tx_blocked(dev)))
4730 return NETDEV_TX_BUSY;
4731
4732 rcu_read_lock();
4733 if (bond_has_slaves(bond))
4734 ret = __bond_start_xmit(skb, dev);
4735 else
Olivier Deprez157378f2022-04-04 15:47:50 +02004736 ret = bond_tx_drop(dev, skb);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004737 rcu_read_unlock();
4738
4739 return ret;
4740}
4741
Olivier Deprez0e641232021-09-23 10:07:05 +02004742static u32 bond_mode_bcast_speed(struct slave *slave, u32 speed)
4743{
4744 if (speed == 0 || speed == SPEED_UNKNOWN)
4745 speed = slave->speed;
4746 else
4747 speed = min(speed, slave->speed);
4748
4749 return speed;
4750}
4751
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004752static int bond_ethtool_get_link_ksettings(struct net_device *bond_dev,
4753 struct ethtool_link_ksettings *cmd)
4754{
4755 struct bonding *bond = netdev_priv(bond_dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004756 struct list_head *iter;
4757 struct slave *slave;
Olivier Deprez0e641232021-09-23 10:07:05 +02004758 u32 speed = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004759
4760 cmd->base.duplex = DUPLEX_UNKNOWN;
4761 cmd->base.port = PORT_OTHER;
4762
4763 /* Since bond_slave_can_tx returns false for all inactive or down slaves, we
4764 * do not need to check mode. Though link speed might not represent
4765 * the true receive or transmit bandwidth (not all modes are symmetric)
4766 * this is an accurate maximum.
4767 */
4768 bond_for_each_slave(bond, slave, iter) {
4769 if (bond_slave_can_tx(slave)) {
Olivier Deprez0e641232021-09-23 10:07:05 +02004770 if (slave->speed != SPEED_UNKNOWN) {
4771 if (BOND_MODE(bond) == BOND_MODE_BROADCAST)
4772 speed = bond_mode_bcast_speed(slave,
4773 speed);
4774 else
4775 speed += slave->speed;
4776 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004777 if (cmd->base.duplex == DUPLEX_UNKNOWN &&
4778 slave->duplex != DUPLEX_UNKNOWN)
4779 cmd->base.duplex = slave->duplex;
4780 }
4781 }
4782 cmd->base.speed = speed ? : SPEED_UNKNOWN;
4783
4784 return 0;
4785}
4786
4787static void bond_ethtool_get_drvinfo(struct net_device *bond_dev,
4788 struct ethtool_drvinfo *drvinfo)
4789{
4790 strlcpy(drvinfo->driver, DRV_NAME, sizeof(drvinfo->driver));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004791 snprintf(drvinfo->fw_version, sizeof(drvinfo->fw_version), "%d",
4792 BOND_ABI_VERSION);
4793}
4794
4795static const struct ethtool_ops bond_ethtool_ops = {
4796 .get_drvinfo = bond_ethtool_get_drvinfo,
4797 .get_link = ethtool_op_get_link,
4798 .get_link_ksettings = bond_ethtool_get_link_ksettings,
4799};
4800
4801static const struct net_device_ops bond_netdev_ops = {
4802 .ndo_init = bond_init,
4803 .ndo_uninit = bond_uninit,
4804 .ndo_open = bond_open,
4805 .ndo_stop = bond_close,
4806 .ndo_start_xmit = bond_start_xmit,
4807 .ndo_select_queue = bond_select_queue,
4808 .ndo_get_stats64 = bond_get_stats,
4809 .ndo_do_ioctl = bond_do_ioctl,
4810 .ndo_change_rx_flags = bond_change_rx_flags,
4811 .ndo_set_rx_mode = bond_set_rx_mode,
4812 .ndo_change_mtu = bond_change_mtu,
4813 .ndo_set_mac_address = bond_set_mac_address,
4814 .ndo_neigh_setup = bond_neigh_setup,
4815 .ndo_vlan_rx_add_vid = bond_vlan_rx_add_vid,
4816 .ndo_vlan_rx_kill_vid = bond_vlan_rx_kill_vid,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004817#ifdef CONFIG_NET_POLL_CONTROLLER
4818 .ndo_netpoll_setup = bond_netpoll_setup,
4819 .ndo_netpoll_cleanup = bond_netpoll_cleanup,
4820 .ndo_poll_controller = bond_poll_controller,
4821#endif
4822 .ndo_add_slave = bond_enslave,
4823 .ndo_del_slave = bond_release,
4824 .ndo_fix_features = bond_fix_features,
4825 .ndo_features_check = passthru_features_check,
Olivier Deprez157378f2022-04-04 15:47:50 +02004826 .ndo_get_xmit_slave = bond_xmit_get_slave,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004827};
4828
4829static const struct device_type bond_type = {
4830 .name = "bond",
4831};
4832
4833static void bond_destructor(struct net_device *bond_dev)
4834{
4835 struct bonding *bond = netdev_priv(bond_dev);
4836 if (bond->wq)
4837 destroy_workqueue(bond->wq);
4838}
4839
4840void bond_setup(struct net_device *bond_dev)
4841{
4842 struct bonding *bond = netdev_priv(bond_dev);
4843
4844 spin_lock_init(&bond->mode_lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004845 bond->params = bonding_defaults;
4846
4847 /* Initialize pointers */
4848 bond->dev = bond_dev;
4849
4850 /* Initialize the device entry points */
4851 ether_setup(bond_dev);
4852 bond_dev->max_mtu = ETH_MAX_MTU;
4853 bond_dev->netdev_ops = &bond_netdev_ops;
4854 bond_dev->ethtool_ops = &bond_ethtool_ops;
4855
4856 bond_dev->needs_free_netdev = true;
4857 bond_dev->priv_destructor = bond_destructor;
4858
4859 SET_NETDEV_DEVTYPE(bond_dev, &bond_type);
4860
4861 /* Initialize the device options */
4862 bond_dev->flags |= IFF_MASTER;
4863 bond_dev->priv_flags |= IFF_BONDING | IFF_UNICAST_FLT | IFF_NO_QUEUE;
4864 bond_dev->priv_flags &= ~(IFF_XMIT_DST_RELEASE | IFF_TX_SKB_SHARING);
4865
Olivier Deprez157378f2022-04-04 15:47:50 +02004866#ifdef CONFIG_XFRM_OFFLOAD
4867 /* set up xfrm device ops (only supported in active-backup right now) */
4868 bond_dev->xfrmdev_ops = &bond_xfrmdev_ops;
4869 INIT_LIST_HEAD(&bond->ipsec_list);
4870 spin_lock_init(&bond->ipsec_lock);
4871#endif /* CONFIG_XFRM_OFFLOAD */
4872
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004873 /* don't acquire bond device's netif_tx_lock when transmitting */
4874 bond_dev->features |= NETIF_F_LLTX;
4875
4876 /* By default, we declare the bond to be fully
4877 * VLAN hardware accelerated capable. Special
4878 * care is taken in the various xmit functions
4879 * when there are slaves that are not hw accel
4880 * capable
4881 */
4882
4883 /* Don't allow bond devices to change network namespaces. */
4884 bond_dev->features |= NETIF_F_NETNS_LOCAL;
4885
4886 bond_dev->hw_features = BOND_VLAN_FEATURES |
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004887 NETIF_F_HW_VLAN_CTAG_RX |
4888 NETIF_F_HW_VLAN_CTAG_FILTER;
4889
4890 bond_dev->hw_features |= NETIF_F_GSO_ENCAP_ALL | NETIF_F_GSO_UDP_L4;
Olivier Deprez157378f2022-04-04 15:47:50 +02004891#ifdef CONFIG_XFRM_OFFLOAD
4892 bond_dev->hw_features |= BOND_XFRM_FEATURES;
4893#endif /* CONFIG_XFRM_OFFLOAD */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004894 bond_dev->features |= bond_dev->hw_features;
David Brazdil0f672f62019-12-10 10:32:29 +00004895 bond_dev->features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
Olivier Deprez157378f2022-04-04 15:47:50 +02004896#ifdef CONFIG_XFRM_OFFLOAD
4897 /* Disable XFRM features if this isn't an active-backup config */
4898 if (BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP)
4899 bond_dev->features &= ~BOND_XFRM_FEATURES;
4900#endif /* CONFIG_XFRM_OFFLOAD */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004901}
4902
4903/* Destroy a bonding device.
4904 * Must be under rtnl_lock when this function is called.
4905 */
4906static void bond_uninit(struct net_device *bond_dev)
4907{
4908 struct bonding *bond = netdev_priv(bond_dev);
Olivier Deprez157378f2022-04-04 15:47:50 +02004909 struct bond_up_slave *usable, *all;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004910 struct list_head *iter;
4911 struct slave *slave;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004912
4913 bond_netpoll_cleanup(bond_dev);
4914
4915 /* Release the bonded slaves */
4916 bond_for_each_slave(bond, slave, iter)
4917 __bond_release_one(bond_dev, slave->dev, true, true);
4918 netdev_info(bond_dev, "Released all slaves\n");
4919
Olivier Deprez157378f2022-04-04 15:47:50 +02004920 usable = rtnl_dereference(bond->usable_slaves);
4921 if (usable) {
4922 RCU_INIT_POINTER(bond->usable_slaves, NULL);
4923 kfree_rcu(usable, rcu);
4924 }
4925
4926 all = rtnl_dereference(bond->all_slaves);
4927 if (all) {
4928 RCU_INIT_POINTER(bond->all_slaves, NULL);
4929 kfree_rcu(all, rcu);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004930 }
4931
4932 list_del(&bond->bond_list);
4933
4934 bond_debug_unregister(bond);
4935}
4936
4937/*------------------------- Module initialization ---------------------------*/
4938
4939static int bond_check_params(struct bond_params *params)
4940{
4941 int arp_validate_value, fail_over_mac_value, primary_reselect_value, i;
4942 struct bond_opt_value newval;
4943 const struct bond_opt_value *valptr;
4944 int arp_all_targets_value = 0;
4945 u16 ad_actor_sys_prio = 0;
4946 u16 ad_user_port_key = 0;
4947 __be32 arp_target[BOND_MAX_ARP_TARGETS] = { 0 };
4948 int arp_ip_count;
4949 int bond_mode = BOND_MODE_ROUNDROBIN;
4950 int xmit_hashtype = BOND_XMIT_POLICY_LAYER2;
4951 int lacp_fast = 0;
4952 int tlb_dynamic_lb;
4953
4954 /* Convert string parameters. */
4955 if (mode) {
4956 bond_opt_initstr(&newval, mode);
4957 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_MODE), &newval);
4958 if (!valptr) {
4959 pr_err("Error: Invalid bonding mode \"%s\"\n", mode);
4960 return -EINVAL;
4961 }
4962 bond_mode = valptr->value;
4963 }
4964
4965 if (xmit_hash_policy) {
4966 if (bond_mode == BOND_MODE_ROUNDROBIN ||
4967 bond_mode == BOND_MODE_ACTIVEBACKUP ||
4968 bond_mode == BOND_MODE_BROADCAST) {
4969 pr_info("xmit_hash_policy param is irrelevant in mode %s\n",
4970 bond_mode_name(bond_mode));
4971 } else {
4972 bond_opt_initstr(&newval, xmit_hash_policy);
4973 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_XMIT_HASH),
4974 &newval);
4975 if (!valptr) {
4976 pr_err("Error: Invalid xmit_hash_policy \"%s\"\n",
4977 xmit_hash_policy);
4978 return -EINVAL;
4979 }
4980 xmit_hashtype = valptr->value;
4981 }
4982 }
4983
4984 if (lacp_rate) {
4985 if (bond_mode != BOND_MODE_8023AD) {
4986 pr_info("lacp_rate param is irrelevant in mode %s\n",
4987 bond_mode_name(bond_mode));
4988 } else {
4989 bond_opt_initstr(&newval, lacp_rate);
4990 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_LACP_RATE),
4991 &newval);
4992 if (!valptr) {
4993 pr_err("Error: Invalid lacp rate \"%s\"\n",
4994 lacp_rate);
4995 return -EINVAL;
4996 }
4997 lacp_fast = valptr->value;
4998 }
4999 }
5000
5001 if (ad_select) {
5002 bond_opt_initstr(&newval, ad_select);
5003 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_AD_SELECT),
5004 &newval);
5005 if (!valptr) {
5006 pr_err("Error: Invalid ad_select \"%s\"\n", ad_select);
5007 return -EINVAL;
5008 }
5009 params->ad_select = valptr->value;
5010 if (bond_mode != BOND_MODE_8023AD)
5011 pr_warn("ad_select param only affects 802.3ad mode\n");
5012 } else {
5013 params->ad_select = BOND_AD_STABLE;
5014 }
5015
5016 if (max_bonds < 0) {
5017 pr_warn("Warning: max_bonds (%d) not in range %d-%d, so it was reset to BOND_DEFAULT_MAX_BONDS (%d)\n",
5018 max_bonds, 0, INT_MAX, BOND_DEFAULT_MAX_BONDS);
5019 max_bonds = BOND_DEFAULT_MAX_BONDS;
5020 }
5021
5022 if (miimon < 0) {
5023 pr_warn("Warning: miimon module parameter (%d), not in range 0-%d, so it was reset to 0\n",
5024 miimon, INT_MAX);
5025 miimon = 0;
5026 }
5027
5028 if (updelay < 0) {
5029 pr_warn("Warning: updelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
5030 updelay, INT_MAX);
5031 updelay = 0;
5032 }
5033
5034 if (downdelay < 0) {
5035 pr_warn("Warning: downdelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
5036 downdelay, INT_MAX);
5037 downdelay = 0;
5038 }
5039
5040 if ((use_carrier != 0) && (use_carrier != 1)) {
5041 pr_warn("Warning: use_carrier module parameter (%d), not of valid value (0/1), so it was set to 1\n",
5042 use_carrier);
5043 use_carrier = 1;
5044 }
5045
5046 if (num_peer_notif < 0 || num_peer_notif > 255) {
5047 pr_warn("Warning: num_grat_arp/num_unsol_na (%d) not in range 0-255 so it was reset to 1\n",
5048 num_peer_notif);
5049 num_peer_notif = 1;
5050 }
5051
5052 /* reset values for 802.3ad/TLB/ALB */
5053 if (!bond_mode_uses_arp(bond_mode)) {
5054 if (!miimon) {
5055 pr_warn("Warning: miimon must be specified, otherwise bonding will not detect link failure, speed and duplex which are essential for 802.3ad operation\n");
5056 pr_warn("Forcing miimon to 100msec\n");
5057 miimon = BOND_DEFAULT_MIIMON;
5058 }
5059 }
5060
5061 if (tx_queues < 1 || tx_queues > 255) {
5062 pr_warn("Warning: tx_queues (%d) should be between 1 and 255, resetting to %d\n",
5063 tx_queues, BOND_DEFAULT_TX_QUEUES);
5064 tx_queues = BOND_DEFAULT_TX_QUEUES;
5065 }
5066
5067 if ((all_slaves_active != 0) && (all_slaves_active != 1)) {
5068 pr_warn("Warning: all_slaves_active module parameter (%d), not of valid value (0/1), so it was set to 0\n",
5069 all_slaves_active);
5070 all_slaves_active = 0;
5071 }
5072
5073 if (resend_igmp < 0 || resend_igmp > 255) {
5074 pr_warn("Warning: resend_igmp (%d) should be between 0 and 255, resetting to %d\n",
5075 resend_igmp, BOND_DEFAULT_RESEND_IGMP);
5076 resend_igmp = BOND_DEFAULT_RESEND_IGMP;
5077 }
5078
5079 bond_opt_initval(&newval, packets_per_slave);
5080 if (!bond_opt_parse(bond_opt_get(BOND_OPT_PACKETS_PER_SLAVE), &newval)) {
5081 pr_warn("Warning: packets_per_slave (%d) should be between 0 and %u resetting to 1\n",
5082 packets_per_slave, USHRT_MAX);
5083 packets_per_slave = 1;
5084 }
5085
5086 if (bond_mode == BOND_MODE_ALB) {
5087 pr_notice("In ALB mode you might experience client disconnections upon reconnection of a link if the bonding module updelay parameter (%d msec) is incompatible with the forwarding delay time of the switch\n",
5088 updelay);
5089 }
5090
5091 if (!miimon) {
5092 if (updelay || downdelay) {
5093 /* just warn the user the up/down delay will have
5094 * no effect since miimon is zero...
5095 */
5096 pr_warn("Warning: miimon module parameter not set and updelay (%d) or downdelay (%d) module parameter is set; updelay and downdelay have no effect unless miimon is set\n",
5097 updelay, downdelay);
5098 }
5099 } else {
5100 /* don't allow arp monitoring */
5101 if (arp_interval) {
5102 pr_warn("Warning: miimon (%d) and arp_interval (%d) can't be used simultaneously, disabling ARP monitoring\n",
5103 miimon, arp_interval);
5104 arp_interval = 0;
5105 }
5106
5107 if ((updelay % miimon) != 0) {
5108 pr_warn("Warning: updelay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n",
5109 updelay, miimon, (updelay / miimon) * miimon);
5110 }
5111
5112 updelay /= miimon;
5113
5114 if ((downdelay % miimon) != 0) {
5115 pr_warn("Warning: downdelay (%d) is not a multiple of miimon (%d), downdelay rounded to %d ms\n",
5116 downdelay, miimon,
5117 (downdelay / miimon) * miimon);
5118 }
5119
5120 downdelay /= miimon;
5121 }
5122
5123 if (arp_interval < 0) {
5124 pr_warn("Warning: arp_interval module parameter (%d), not in range 0-%d, so it was reset to 0\n",
5125 arp_interval, INT_MAX);
5126 arp_interval = 0;
5127 }
5128
5129 for (arp_ip_count = 0, i = 0;
5130 (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[i]; i++) {
5131 __be32 ip;
5132
5133 /* not a complete check, but good enough to catch mistakes */
5134 if (!in4_pton(arp_ip_target[i], -1, (u8 *)&ip, -1, NULL) ||
5135 !bond_is_ip_target_ok(ip)) {
5136 pr_warn("Warning: bad arp_ip_target module parameter (%s), ARP monitoring will not be performed\n",
5137 arp_ip_target[i]);
5138 arp_interval = 0;
5139 } else {
5140 if (bond_get_targets_ip(arp_target, ip) == -1)
5141 arp_target[arp_ip_count++] = ip;
5142 else
5143 pr_warn("Warning: duplicate address %pI4 in arp_ip_target, skipping\n",
5144 &ip);
5145 }
5146 }
5147
5148 if (arp_interval && !arp_ip_count) {
5149 /* don't allow arping if no arp_ip_target given... */
5150 pr_warn("Warning: arp_interval module parameter (%d) specified without providing an arp_ip_target parameter, arp_interval was reset to 0\n",
5151 arp_interval);
5152 arp_interval = 0;
5153 }
5154
5155 if (arp_validate) {
5156 if (!arp_interval) {
5157 pr_err("arp_validate requires arp_interval\n");
5158 return -EINVAL;
5159 }
5160
5161 bond_opt_initstr(&newval, arp_validate);
5162 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_ARP_VALIDATE),
5163 &newval);
5164 if (!valptr) {
5165 pr_err("Error: invalid arp_validate \"%s\"\n",
5166 arp_validate);
5167 return -EINVAL;
5168 }
5169 arp_validate_value = valptr->value;
5170 } else {
5171 arp_validate_value = 0;
5172 }
5173
5174 if (arp_all_targets) {
5175 bond_opt_initstr(&newval, arp_all_targets);
5176 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_ARP_ALL_TARGETS),
5177 &newval);
5178 if (!valptr) {
5179 pr_err("Error: invalid arp_all_targets_value \"%s\"\n",
5180 arp_all_targets);
5181 arp_all_targets_value = 0;
5182 } else {
5183 arp_all_targets_value = valptr->value;
5184 }
5185 }
5186
5187 if (miimon) {
5188 pr_info("MII link monitoring set to %d ms\n", miimon);
5189 } else if (arp_interval) {
5190 valptr = bond_opt_get_val(BOND_OPT_ARP_VALIDATE,
5191 arp_validate_value);
5192 pr_info("ARP monitoring set to %d ms, validate %s, with %d target(s):",
5193 arp_interval, valptr->string, arp_ip_count);
5194
5195 for (i = 0; i < arp_ip_count; i++)
5196 pr_cont(" %s", arp_ip_target[i]);
5197
5198 pr_cont("\n");
5199
5200 } else if (max_bonds) {
5201 /* miimon and arp_interval not set, we need one so things
5202 * work as expected, see bonding.txt for details
5203 */
5204 pr_debug("Warning: either miimon or arp_interval and arp_ip_target module parameters must be specified, otherwise bonding will not detect link failures! see bonding.txt for details\n");
5205 }
5206
5207 if (primary && !bond_mode_uses_primary(bond_mode)) {
5208 /* currently, using a primary only makes sense
5209 * in active backup, TLB or ALB modes
5210 */
5211 pr_warn("Warning: %s primary device specified but has no effect in %s mode\n",
5212 primary, bond_mode_name(bond_mode));
5213 primary = NULL;
5214 }
5215
5216 if (primary && primary_reselect) {
5217 bond_opt_initstr(&newval, primary_reselect);
5218 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_PRIMARY_RESELECT),
5219 &newval);
5220 if (!valptr) {
5221 pr_err("Error: Invalid primary_reselect \"%s\"\n",
5222 primary_reselect);
5223 return -EINVAL;
5224 }
5225 primary_reselect_value = valptr->value;
5226 } else {
5227 primary_reselect_value = BOND_PRI_RESELECT_ALWAYS;
5228 }
5229
5230 if (fail_over_mac) {
5231 bond_opt_initstr(&newval, fail_over_mac);
5232 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_FAIL_OVER_MAC),
5233 &newval);
5234 if (!valptr) {
5235 pr_err("Error: invalid fail_over_mac \"%s\"\n",
5236 fail_over_mac);
5237 return -EINVAL;
5238 }
5239 fail_over_mac_value = valptr->value;
5240 if (bond_mode != BOND_MODE_ACTIVEBACKUP)
5241 pr_warn("Warning: fail_over_mac only affects active-backup mode\n");
5242 } else {
5243 fail_over_mac_value = BOND_FOM_NONE;
5244 }
5245
5246 bond_opt_initstr(&newval, "default");
5247 valptr = bond_opt_parse(
5248 bond_opt_get(BOND_OPT_AD_ACTOR_SYS_PRIO),
5249 &newval);
5250 if (!valptr) {
5251 pr_err("Error: No ad_actor_sys_prio default value");
5252 return -EINVAL;
5253 }
5254 ad_actor_sys_prio = valptr->value;
5255
5256 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_AD_USER_PORT_KEY),
5257 &newval);
5258 if (!valptr) {
5259 pr_err("Error: No ad_user_port_key default value");
5260 return -EINVAL;
5261 }
5262 ad_user_port_key = valptr->value;
5263
5264 bond_opt_initstr(&newval, "default");
5265 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_TLB_DYNAMIC_LB), &newval);
5266 if (!valptr) {
5267 pr_err("Error: No tlb_dynamic_lb default value");
5268 return -EINVAL;
5269 }
5270 tlb_dynamic_lb = valptr->value;
5271
5272 if (lp_interval == 0) {
5273 pr_warn("Warning: ip_interval must be between 1 and %d, so it was reset to %d\n",
5274 INT_MAX, BOND_ALB_DEFAULT_LP_INTERVAL);
5275 lp_interval = BOND_ALB_DEFAULT_LP_INTERVAL;
5276 }
5277
5278 /* fill params struct with the proper values */
5279 params->mode = bond_mode;
5280 params->xmit_policy = xmit_hashtype;
5281 params->miimon = miimon;
5282 params->num_peer_notif = num_peer_notif;
5283 params->arp_interval = arp_interval;
5284 params->arp_validate = arp_validate_value;
5285 params->arp_all_targets = arp_all_targets_value;
5286 params->updelay = updelay;
5287 params->downdelay = downdelay;
David Brazdil0f672f62019-12-10 10:32:29 +00005288 params->peer_notif_delay = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00005289 params->use_carrier = use_carrier;
5290 params->lacp_fast = lacp_fast;
5291 params->primary[0] = 0;
5292 params->primary_reselect = primary_reselect_value;
5293 params->fail_over_mac = fail_over_mac_value;
5294 params->tx_queues = tx_queues;
5295 params->all_slaves_active = all_slaves_active;
5296 params->resend_igmp = resend_igmp;
5297 params->min_links = min_links;
5298 params->lp_interval = lp_interval;
5299 params->packets_per_slave = packets_per_slave;
5300 params->tlb_dynamic_lb = tlb_dynamic_lb;
5301 params->ad_actor_sys_prio = ad_actor_sys_prio;
5302 eth_zero_addr(params->ad_actor_system);
5303 params->ad_user_port_key = ad_user_port_key;
5304 if (packets_per_slave > 0) {
5305 params->reciprocal_packets_per_slave =
5306 reciprocal_value(packets_per_slave);
5307 } else {
5308 /* reciprocal_packets_per_slave is unused if
5309 * packets_per_slave is 0 or 1, just initialize it
5310 */
5311 params->reciprocal_packets_per_slave =
5312 (struct reciprocal_value) { 0 };
5313 }
5314
5315 if (primary) {
5316 strncpy(params->primary, primary, IFNAMSIZ);
5317 params->primary[IFNAMSIZ - 1] = 0;
5318 }
5319
5320 memcpy(params->arp_targets, arp_target, sizeof(arp_target));
5321
5322 return 0;
5323}
5324
5325/* Called from registration process */
5326static int bond_init(struct net_device *bond_dev)
5327{
5328 struct bonding *bond = netdev_priv(bond_dev);
5329 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
5330
5331 netdev_dbg(bond_dev, "Begin bond_init\n");
5332
5333 bond->wq = alloc_ordered_workqueue(bond_dev->name, WQ_MEM_RECLAIM);
5334 if (!bond->wq)
5335 return -ENOMEM;
5336
David Brazdil0f672f62019-12-10 10:32:29 +00005337 spin_lock_init(&bond->stats_lock);
Olivier Deprez157378f2022-04-04 15:47:50 +02005338 netdev_lockdep_set_classes(bond_dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00005339
5340 list_add_tail(&bond->bond_list, &bn->dev_list);
5341
5342 bond_prepare_sysfs_group(bond);
5343
5344 bond_debug_register(bond);
5345
5346 /* Ensure valid dev_addr */
5347 if (is_zero_ether_addr(bond_dev->dev_addr) &&
5348 bond_dev->addr_assign_type == NET_ADDR_PERM)
5349 eth_hw_addr_random(bond_dev);
5350
5351 return 0;
5352}
5353
5354unsigned int bond_get_num_tx_queues(void)
5355{
5356 return tx_queues;
5357}
5358
5359/* Create a new bond based on the specified name and bonding parameters.
5360 * If name is NULL, obtain a suitable "bond%d" name for us.
5361 * Caller must NOT hold rtnl_lock; we need to release it here before we
5362 * set up our sysfs entries.
5363 */
5364int bond_create(struct net *net, const char *name)
5365{
5366 struct net_device *bond_dev;
5367 struct bonding *bond;
5368 struct alb_bond_info *bond_info;
5369 int res;
5370
5371 rtnl_lock();
5372
5373 bond_dev = alloc_netdev_mq(sizeof(struct bonding),
5374 name ? name : "bond%d", NET_NAME_UNKNOWN,
5375 bond_setup, tx_queues);
5376 if (!bond_dev) {
5377 pr_err("%s: eek! can't alloc netdev!\n", name);
5378 rtnl_unlock();
5379 return -ENOMEM;
5380 }
5381
5382 /*
5383 * Initialize rx_hashtbl_used_head to RLB_NULL_INDEX.
5384 * It is set to 0 by default which is wrong.
5385 */
5386 bond = netdev_priv(bond_dev);
5387 bond_info = &(BOND_ALB_INFO(bond));
5388 bond_info->rx_hashtbl_used_head = RLB_NULL_INDEX;
5389
5390 dev_net_set(bond_dev, net);
5391 bond_dev->rtnl_link_ops = &bond_link_ops;
5392
5393 res = register_netdevice(bond_dev);
Olivier Deprez0e641232021-09-23 10:07:05 +02005394 if (res < 0) {
5395 free_netdev(bond_dev);
5396 rtnl_unlock();
5397
5398 return res;
5399 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00005400
5401 netif_carrier_off(bond_dev);
5402
5403 bond_work_init_all(bond);
5404
5405 rtnl_unlock();
Olivier Deprez0e641232021-09-23 10:07:05 +02005406 return 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00005407}
5408
5409static int __net_init bond_net_init(struct net *net)
5410{
5411 struct bond_net *bn = net_generic(net, bond_net_id);
5412
5413 bn->net = net;
5414 INIT_LIST_HEAD(&bn->dev_list);
5415
5416 bond_create_proc_dir(bn);
5417 bond_create_sysfs(bn);
5418
5419 return 0;
5420}
5421
5422static void __net_exit bond_net_exit(struct net *net)
5423{
5424 struct bond_net *bn = net_generic(net, bond_net_id);
5425 struct bonding *bond, *tmp_bond;
5426 LIST_HEAD(list);
5427
5428 bond_destroy_sysfs(bn);
5429
5430 /* Kill off any bonds created after unregistering bond rtnl ops */
5431 rtnl_lock();
5432 list_for_each_entry_safe(bond, tmp_bond, &bn->dev_list, bond_list)
5433 unregister_netdevice_queue(bond->dev, &list);
5434 unregister_netdevice_many(&list);
5435 rtnl_unlock();
5436
5437 bond_destroy_proc_dir(bn);
5438}
5439
5440static struct pernet_operations bond_net_ops = {
5441 .init = bond_net_init,
5442 .exit = bond_net_exit,
5443 .id = &bond_net_id,
5444 .size = sizeof(struct bond_net),
5445};
5446
5447static int __init bonding_init(void)
5448{
5449 int i;
5450 int res;
5451
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00005452 res = bond_check_params(&bonding_defaults);
5453 if (res)
5454 goto out;
5455
5456 res = register_pernet_subsys(&bond_net_ops);
5457 if (res)
5458 goto out;
5459
5460 res = bond_netlink_init();
5461 if (res)
5462 goto err_link;
5463
5464 bond_create_debugfs();
5465
5466 for (i = 0; i < max_bonds; i++) {
5467 res = bond_create(&init_net, NULL);
5468 if (res)
5469 goto err;
5470 }
5471
Olivier Deprez157378f2022-04-04 15:47:50 +02005472 skb_flow_dissector_init(&flow_keys_bonding,
5473 flow_keys_bonding_keys,
5474 ARRAY_SIZE(flow_keys_bonding_keys));
5475
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00005476 register_netdevice_notifier(&bond_netdev_notifier);
5477out:
5478 return res;
5479err:
5480 bond_destroy_debugfs();
5481 bond_netlink_fini();
5482err_link:
5483 unregister_pernet_subsys(&bond_net_ops);
5484 goto out;
5485
5486}
5487
5488static void __exit bonding_exit(void)
5489{
5490 unregister_netdevice_notifier(&bond_netdev_notifier);
5491
5492 bond_destroy_debugfs();
5493
5494 bond_netlink_fini();
5495 unregister_pernet_subsys(&bond_net_ops);
5496
5497#ifdef CONFIG_NET_POLL_CONTROLLER
5498 /* Make sure we don't have an imbalance on our netpoll blocking */
5499 WARN_ON(atomic_read(&netpoll_block_tx));
5500#endif
5501}
5502
5503module_init(bonding_init);
5504module_exit(bonding_exit);
5505MODULE_LICENSE("GPL");
Olivier Deprez157378f2022-04-04 15:47:50 +02005506MODULE_DESCRIPTION(DRV_DESCRIPTION);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00005507MODULE_AUTHOR("Thomas Davis, tadavis@lbl.gov and many others");