1 // SPDX-License-Identifier: GPL-1.0+
2 /*
3 * originally based on the dummy device.
4 *
5 * Copyright 1999, Thomas Davis, tadavis@lbl.gov.
6 * Based on dummy.c, and eql.c devices.
7 *
8 * bonding.c: an Ethernet Bonding driver
9 *
10 * This is useful to talk to a Cisco EtherChannel compatible equipment:
11 * Cisco 5500
12 * Sun Trunking (Solaris)
13 * Alteon AceDirector Trunks
14 * Linux Bonding
15 * and probably many L2 switches ...
16 *
17 * How it works:
18 * ifconfig bond0 ipaddress netmask up
19 * will setup a network device, with an ip address. No mac address
20 * will be assigned at this time. The hw mac address will come from
21 * the first slave bonded to the channel. All slaves will then use
22 * this hw mac address.
23 *
24 * ifconfig bond0 down
25 * will release all slaves, marking them as down.
26 *
27 * ifenslave bond0 eth0
28 * will attach eth0 to bond0 as a slave. eth0 hw mac address will either
29 * a: be used as initial mac address
30 * b: if a hw mac address already is there, eth0's hw mac address
31 * will then be set from bond0.
32 *
33 */
34
35 #include <linux/kernel.h>
36 #include <linux/module.h>
37 #include <linux/types.h>
38 #include <linux/fcntl.h>
39 #include <linux/filter.h>
40 #include <linux/interrupt.h>
41 #include <linux/ptrace.h>
42 #include <linux/ioport.h>
43 #include <linux/in.h>
44 #include <net/ip.h>
45 #include <linux/ip.h>
46 #include <linux/icmp.h>
47 #include <linux/icmpv6.h>
48 #include <linux/tcp.h>
49 #include <linux/udp.h>
50 #include <linux/slab.h>
51 #include <linux/string.h>
52 #include <linux/init.h>
53 #include <linux/timer.h>
54 #include <linux/socket.h>
55 #include <linux/ctype.h>
56 #include <linux/inet.h>
57 #include <linux/bitops.h>
58 #include <linux/io.h>
59 #include <asm/dma.h>
60 #include <linux/uaccess.h>
61 #include <linux/errno.h>
62 #include <linux/netdevice.h>
63 #include <linux/inetdevice.h>
64 #include <linux/igmp.h>
65 #include <linux/etherdevice.h>
66 #include <linux/skbuff.h>
67 #include <net/sock.h>
68 #include <linux/rtnetlink.h>
69 #include <linux/smp.h>
70 #include <linux/if_ether.h>
71 #include <net/arp.h>
72 #include <linux/mii.h>
73 #include <linux/ethtool.h>
74 #include <linux/if_vlan.h>
75 #include <linux/if_bonding.h>
76 #include <linux/phy.h>
77 #include <linux/jiffies.h>
78 #include <linux/preempt.h>
79 #include <net/route.h>
80 #include <net/net_namespace.h>
81 #include <net/netns/generic.h>
82 #include <net/pkt_sched.h>
83 #include <linux/rculist.h>
84 #include <net/flow_dissector.h>
85 #include <net/xfrm.h>
86 #include <net/bonding.h>
87 #include <net/bond_3ad.h>
88 #include <net/bond_alb.h>
89 #if IS_ENABLED(CONFIG_TLS_DEVICE)
90 #include <net/tls.h>
91 #endif
92 #include <net/ip6_route.h>
93 #include <net/xdp.h>
94
95 #include "bonding_priv.h"
96
97 /*---------------------------- Module parameters ----------------------------*/
98
99 /* monitor all links that often (in milliseconds). <=0 disables monitoring */
100
101 static int max_bonds = BOND_DEFAULT_MAX_BONDS;
102 static int tx_queues = BOND_DEFAULT_TX_QUEUES;
103 static int num_peer_notif = 1;
104 static int miimon;
105 static int updelay;
106 static int downdelay;
107 static int use_carrier = 1;
108 static char *mode;
109 static char *primary;
110 static char *primary_reselect;
111 static char *lacp_rate;
112 static int min_links;
113 static char *ad_select;
114 static char *xmit_hash_policy;
115 static int arp_interval;
116 static char *arp_ip_target[BOND_MAX_ARP_TARGETS];
117 static char *arp_validate;
118 static char *arp_all_targets;
119 static char *fail_over_mac;
120 static int all_slaves_active;
121 static struct bond_params bonding_defaults;
122 static int resend_igmp = BOND_DEFAULT_RESEND_IGMP;
123 static int packets_per_slave = 1;
124 static int lp_interval = BOND_ALB_DEFAULT_LP_INTERVAL;
125
126 module_param(max_bonds, int, 0);
127 MODULE_PARM_DESC(max_bonds, "Max number of bonded devices");
128 module_param(tx_queues, int, 0);
129 MODULE_PARM_DESC(tx_queues, "Max number of transmit queues (default = 16)");
130 module_param_named(num_grat_arp, num_peer_notif, int, 0644);
131 MODULE_PARM_DESC(num_grat_arp, "Number of peer notifications to send on "
132 "failover event (alias of num_unsol_na)");
133 module_param_named(num_unsol_na, num_peer_notif, int, 0644);
134 MODULE_PARM_DESC(num_unsol_na, "Number of peer notifications to send on "
135 "failover event (alias of num_grat_arp)");
136 module_param(miimon, int, 0);
137 MODULE_PARM_DESC(miimon, "Link check interval in milliseconds");
138 module_param(updelay, int, 0);
139 MODULE_PARM_DESC(updelay, "Delay before considering link up, in milliseconds");
140 module_param(downdelay, int, 0);
141 MODULE_PARM_DESC(downdelay, "Delay before considering link down, "
142 "in milliseconds");
143 module_param(use_carrier, int, 0);
144 MODULE_PARM_DESC(use_carrier, "Use netif_carrier_ok (vs MII ioctls) in miimon; "
145 "0 for off, 1 for on (default)");
146 module_param(mode, charp, 0);
147 MODULE_PARM_DESC(mode, "Mode of operation; 0 for balance-rr, "
148 "1 for active-backup, 2 for balance-xor, "
149 "3 for broadcast, 4 for 802.3ad, 5 for balance-tlb, "
150 "6 for balance-alb");
151 module_param(primary, charp, 0);
152 MODULE_PARM_DESC(primary, "Primary network device to use");
153 module_param(primary_reselect, charp, 0);
154 MODULE_PARM_DESC(primary_reselect, "Reselect primary slave "
155 "once it comes up; "
156 "0 for always (default), "
157 "1 for only if speed of primary is "
158 "better, "
159 "2 for only on active slave "
160 "failure");
161 module_param(lacp_rate, charp, 0);
162 MODULE_PARM_DESC(lacp_rate, "LACPDU tx rate to request from 802.3ad partner; "
163 "0 for slow, 1 for fast");
164 module_param(ad_select, charp, 0);
165 MODULE_PARM_DESC(ad_select, "802.3ad aggregation selection logic; "
166 "0 for stable (default), 1 for bandwidth, "
167 "2 for count");
168 module_param(min_links, int, 0);
169 MODULE_PARM_DESC(min_links, "Minimum number of available links before turning on carrier");
170
171 module_param(xmit_hash_policy, charp, 0);
172 MODULE_PARM_DESC(xmit_hash_policy, "balance-alb, balance-tlb, balance-xor, 802.3ad hashing method; "
173 "0 for layer 2 (default), 1 for layer 3+4, "
174 "2 for layer 2+3, 3 for encap layer 2+3, "
175 "4 for encap layer 3+4, 5 for vlan+srcmac");
176 module_param(arp_interval, int, 0);
177 MODULE_PARM_DESC(arp_interval, "arp interval in milliseconds");
178 module_param_array(arp_ip_target, charp, NULL, 0);
179 MODULE_PARM_DESC(arp_ip_target, "arp targets in n.n.n.n form");
180 module_param(arp_validate, charp, 0);
181 MODULE_PARM_DESC(arp_validate, "validate src/dst of ARP probes; "
182 "0 for none (default), 1 for active, "
183 "2 for backup, 3 for all");
184 module_param(arp_all_targets, charp, 0);
185 MODULE_PARM_DESC(arp_all_targets, "fail on any/all arp targets timeout; 0 for any (default), 1 for all");
186 module_param(fail_over_mac, charp, 0);
187 MODULE_PARM_DESC(fail_over_mac, "For active-backup, do not set all slaves to "
188 "the same MAC; 0 for none (default), "
189 "1 for active, 2 for follow");
190 module_param(all_slaves_active, int, 0);
191 MODULE_PARM_DESC(all_slaves_active, "Keep all frames received on an interface "
192 "by setting active flag for all slaves; "
193 "0 for never (default), 1 for always.");
194 module_param(resend_igmp, int, 0);
195 MODULE_PARM_DESC(resend_igmp, "Number of IGMP membership reports to send on "
196 "link failure");
197 module_param(packets_per_slave, int, 0);
198 MODULE_PARM_DESC(packets_per_slave, "Packets to send per slave in balance-rr "
199 "mode; 0 for a random slave, 1 packet per "
200 "slave (default), >1 packets per slave.");
201 module_param(lp_interval, uint, 0);
202 MODULE_PARM_DESC(lp_interval, "The number of seconds between instances where "
203 "the bonding driver sends learning packets to "
204 "each slaves peer switch. The default is 1.");
205
206 /*----------------------------- Global variables ----------------------------*/
207
208 #ifdef CONFIG_NET_POLL_CONTROLLER
209 atomic_t netpoll_block_tx = ATOMIC_INIT(0);
210 #endif
211
212 unsigned int bond_net_id __read_mostly;
213
214 static const struct flow_dissector_key flow_keys_bonding_keys[] = {
215 {
216 .key_id = FLOW_DISSECTOR_KEY_CONTROL,
217 .offset = offsetof(struct flow_keys, control),
218 },
219 {
220 .key_id = FLOW_DISSECTOR_KEY_BASIC,
221 .offset = offsetof(struct flow_keys, basic),
222 },
223 {
224 .key_id = FLOW_DISSECTOR_KEY_IPV4_ADDRS,
225 .offset = offsetof(struct flow_keys, addrs.v4addrs),
226 },
227 {
228 .key_id = FLOW_DISSECTOR_KEY_IPV6_ADDRS,
229 .offset = offsetof(struct flow_keys, addrs.v6addrs),
230 },
231 {
232 .key_id = FLOW_DISSECTOR_KEY_TIPC,
233 .offset = offsetof(struct flow_keys, addrs.tipckey),
234 },
235 {
236 .key_id = FLOW_DISSECTOR_KEY_PORTS,
237 .offset = offsetof(struct flow_keys, ports),
238 },
239 {
240 .key_id = FLOW_DISSECTOR_KEY_ICMP,
241 .offset = offsetof(struct flow_keys, icmp),
242 },
243 {
244 .key_id = FLOW_DISSECTOR_KEY_VLAN,
245 .offset = offsetof(struct flow_keys, vlan),
246 },
247 {
248 .key_id = FLOW_DISSECTOR_KEY_FLOW_LABEL,
249 .offset = offsetof(struct flow_keys, tags),
250 },
251 {
252 .key_id = FLOW_DISSECTOR_KEY_GRE_KEYID,
253 .offset = offsetof(struct flow_keys, keyid),
254 },
255 };
256
257 static struct flow_dissector flow_keys_bonding __read_mostly;
258
259 /*-------------------------- Forward declarations ---------------------------*/
260
261 static int bond_init(struct net_device *bond_dev);
262 static void bond_uninit(struct net_device *bond_dev);
263 static void bond_get_stats(struct net_device *bond_dev,
264 struct rtnl_link_stats64 *stats);
265 static void bond_slave_arr_handler(struct work_struct *work);
266 static bool bond_time_in_interval(struct bonding *bond, unsigned long last_act,
267 int mod);
268 static void bond_netdev_notify_work(struct work_struct *work);
269
270 /*---------------------------- General routines -----------------------------*/
271
bond_mode_name(int mode)272 const char *bond_mode_name(int mode)
273 {
274 static const char *names[] = {
275 [BOND_MODE_ROUNDROBIN] = "load balancing (round-robin)",
276 [BOND_MODE_ACTIVEBACKUP] = "fault-tolerance (active-backup)",
277 [BOND_MODE_XOR] = "load balancing (xor)",
278 [BOND_MODE_BROADCAST] = "fault-tolerance (broadcast)",
279 [BOND_MODE_8023AD] = "IEEE 802.3ad Dynamic link aggregation",
280 [BOND_MODE_TLB] = "transmit load balancing",
281 [BOND_MODE_ALB] = "adaptive load balancing",
282 };
283
284 if (mode < BOND_MODE_ROUNDROBIN || mode > BOND_MODE_ALB)
285 return "unknown";
286
287 return names[mode];
288 }
289
290 /**
291 * bond_dev_queue_xmit - Prepare skb for xmit.
292 *
293 * @bond: bond device that got this skb for tx.
294 * @skb: hw accel VLAN tagged skb to transmit
295 * @slave_dev: slave that is supposed to xmit this skbuff
296 */
bond_dev_queue_xmit(struct bonding * bond,struct sk_buff * skb,struct net_device * slave_dev)297 netdev_tx_t bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb,
298 struct net_device *slave_dev)
299 {
300 skb->dev = slave_dev;
301
302 BUILD_BUG_ON(sizeof(skb->queue_mapping) !=
303 sizeof(qdisc_skb_cb(skb)->slave_dev_queue_mapping));
304 skb_set_queue_mapping(skb, qdisc_skb_cb(skb)->slave_dev_queue_mapping);
305
306 if (unlikely(netpoll_tx_running(bond->dev)))
307 return bond_netpoll_send_skb(bond_get_slave_by_dev(bond, slave_dev), skb);
308
309 return dev_queue_xmit(skb);
310 }
311
bond_sk_check(struct bonding * bond)312 static bool bond_sk_check(struct bonding *bond)
313 {
314 switch (BOND_MODE(bond)) {
315 case BOND_MODE_8023AD:
316 case BOND_MODE_XOR:
317 if (bond->params.xmit_policy == BOND_XMIT_POLICY_LAYER34)
318 return true;
319 fallthrough;
320 default:
321 return false;
322 }
323 }
324
bond_xdp_check(struct bonding * bond)325 static bool bond_xdp_check(struct bonding *bond)
326 {
327 switch (BOND_MODE(bond)) {
328 case BOND_MODE_ROUNDROBIN:
329 case BOND_MODE_ACTIVEBACKUP:
330 return true;
331 case BOND_MODE_8023AD:
332 case BOND_MODE_XOR:
333 /* vlan+srcmac is not supported with XDP as in most cases the 802.1q
334 * payload is not in the packet due to hardware offload.
335 */
336 if (bond->params.xmit_policy != BOND_XMIT_POLICY_VLAN_SRCMAC)
337 return true;
338 fallthrough;
339 default:
340 return false;
341 }
342 }
343
344 /*---------------------------------- VLAN -----------------------------------*/
345
346 /* In the following 2 functions, bond_vlan_rx_add_vid and bond_vlan_rx_kill_vid,
347 * We don't protect the slave list iteration with a lock because:
348 * a. This operation is performed in IOCTL context,
349 * b. The operation is protected by the RTNL semaphore in the 8021q code,
350 * c. Holding a lock with BH disabled while directly calling a base driver
351 * entry point is generally a BAD idea.
352 *
353 * The design of synchronization/protection for this operation in the 8021q
354 * module is good for one or more VLAN devices over a single physical device
355 * and cannot be extended for a teaming solution like bonding, so there is a
356 * potential race condition here where a net device from the vlan group might
357 * be referenced (either by a base driver or the 8021q code) while it is being
358 * removed from the system. However, it turns out we're not making matters
359 * worse, and if it works for regular VLAN usage it will work here too.
360 */
361
362 /**
363 * bond_vlan_rx_add_vid - Propagates adding an id to slaves
364 * @bond_dev: bonding net device that got called
365 * @proto: network protocol ID
366 * @vid: vlan id being added
367 */
bond_vlan_rx_add_vid(struct net_device * bond_dev,__be16 proto,u16 vid)368 static int bond_vlan_rx_add_vid(struct net_device *bond_dev,
369 __be16 proto, u16 vid)
370 {
371 struct bonding *bond = netdev_priv(bond_dev);
372 struct slave *slave, *rollback_slave;
373 struct list_head *iter;
374 int res;
375
376 bond_for_each_slave(bond, slave, iter) {
377 res = vlan_vid_add(slave->dev, proto, vid);
378 if (res)
379 goto unwind;
380 }
381
382 return 0;
383
384 unwind:
385 /* unwind to the slave that failed */
386 bond_for_each_slave(bond, rollback_slave, iter) {
387 if (rollback_slave == slave)
388 break;
389
390 vlan_vid_del(rollback_slave->dev, proto, vid);
391 }
392
393 return res;
394 }
395
396 /**
397 * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves
398 * @bond_dev: bonding net device that got called
399 * @proto: network protocol ID
400 * @vid: vlan id being removed
401 */
bond_vlan_rx_kill_vid(struct net_device * bond_dev,__be16 proto,u16 vid)402 static int bond_vlan_rx_kill_vid(struct net_device *bond_dev,
403 __be16 proto, u16 vid)
404 {
405 struct bonding *bond = netdev_priv(bond_dev);
406 struct list_head *iter;
407 struct slave *slave;
408
409 bond_for_each_slave(bond, slave, iter)
410 vlan_vid_del(slave->dev, proto, vid);
411
412 if (bond_is_lb(bond))
413 bond_alb_clear_vlan(bond, vid);
414
415 return 0;
416 }
417
418 /*---------------------------------- XFRM -----------------------------------*/
419
420 #ifdef CONFIG_XFRM_OFFLOAD
421 /**
422 * bond_ipsec_add_sa - program device with a security association
423 * @xs: pointer to transformer state struct
424 * @extack: extack point to fill failure reason
425 **/
bond_ipsec_add_sa(struct xfrm_state * xs,struct netlink_ext_ack * extack)426 static int bond_ipsec_add_sa(struct xfrm_state *xs,
427 struct netlink_ext_ack *extack)
428 {
429 struct net_device *bond_dev = xs->xso.dev;
430 struct net_device *real_dev;
431 netdevice_tracker tracker;
432 struct bond_ipsec *ipsec;
433 struct bonding *bond;
434 struct slave *slave;
435 int err;
436
437 if (!bond_dev)
438 return -EINVAL;
439
440 rcu_read_lock();
441 bond = netdev_priv(bond_dev);
442 slave = rcu_dereference(bond->curr_active_slave);
443 real_dev = slave ? slave->dev : NULL;
444 netdev_hold(real_dev, &tracker, GFP_ATOMIC);
445 rcu_read_unlock();
446 if (!real_dev) {
447 err = -ENODEV;
448 goto out;
449 }
450
451 if (!real_dev->xfrmdev_ops ||
452 !real_dev->xfrmdev_ops->xdo_dev_state_add ||
453 netif_is_bond_master(real_dev)) {
454 NL_SET_ERR_MSG_MOD(extack, "Slave does not support ipsec offload");
455 err = -EINVAL;
456 goto out;
457 }
458
459 ipsec = kmalloc(sizeof(*ipsec), GFP_KERNEL);
460 if (!ipsec) {
461 err = -ENOMEM;
462 goto out;
463 }
464
465 xs->xso.real_dev = real_dev;
466 err = real_dev->xfrmdev_ops->xdo_dev_state_add(xs, extack);
467 if (!err) {
468 ipsec->xs = xs;
469 INIT_LIST_HEAD(&ipsec->list);
470 mutex_lock(&bond->ipsec_lock);
471 list_add(&ipsec->list, &bond->ipsec_list);
472 mutex_unlock(&bond->ipsec_lock);
473 } else {
474 kfree(ipsec);
475 }
476 out:
477 netdev_put(real_dev, &tracker);
478 return err;
479 }
480
bond_ipsec_add_sa_all(struct bonding * bond)481 static void bond_ipsec_add_sa_all(struct bonding *bond)
482 {
483 struct net_device *bond_dev = bond->dev;
484 struct net_device *real_dev;
485 struct bond_ipsec *ipsec;
486 struct slave *slave;
487
488 slave = rtnl_dereference(bond->curr_active_slave);
489 real_dev = slave ? slave->dev : NULL;
490 if (!real_dev)
491 return;
492
493 mutex_lock(&bond->ipsec_lock);
494 if (!real_dev->xfrmdev_ops ||
495 !real_dev->xfrmdev_ops->xdo_dev_state_add ||
496 netif_is_bond_master(real_dev)) {
497 if (!list_empty(&bond->ipsec_list))
498 slave_warn(bond_dev, real_dev,
499 "%s: no slave xdo_dev_state_add\n",
500 __func__);
501 goto out;
502 }
503
504 list_for_each_entry(ipsec, &bond->ipsec_list, list) {
505 /* If new state is added before ipsec_lock acquired */
506 if (ipsec->xs->xso.real_dev == real_dev)
507 continue;
508
509 ipsec->xs->xso.real_dev = real_dev;
510 if (real_dev->xfrmdev_ops->xdo_dev_state_add(ipsec->xs, NULL)) {
511 slave_warn(bond_dev, real_dev, "%s: failed to add SA\n", __func__);
512 ipsec->xs->xso.real_dev = NULL;
513 }
514 }
515 out:
516 mutex_unlock(&bond->ipsec_lock);
517 }
518
519 /**
520 * bond_ipsec_del_sa - clear out this specific SA
521 * @xs: pointer to transformer state struct
522 **/
bond_ipsec_del_sa(struct xfrm_state * xs)523 static void bond_ipsec_del_sa(struct xfrm_state *xs)
524 {
525 struct net_device *bond_dev = xs->xso.dev;
526 struct net_device *real_dev;
527 netdevice_tracker tracker;
528 struct bond_ipsec *ipsec;
529 struct bonding *bond;
530 struct slave *slave;
531
532 if (!bond_dev)
533 return;
534
535 rcu_read_lock();
536 bond = netdev_priv(bond_dev);
537 slave = rcu_dereference(bond->curr_active_slave);
538 real_dev = slave ? slave->dev : NULL;
539 netdev_hold(real_dev, &tracker, GFP_ATOMIC);
540 rcu_read_unlock();
541
542 if (!slave)
543 goto out;
544
545 if (!xs->xso.real_dev)
546 goto out;
547
548 WARN_ON(xs->xso.real_dev != real_dev);
549
550 if (!real_dev->xfrmdev_ops ||
551 !real_dev->xfrmdev_ops->xdo_dev_state_delete ||
552 netif_is_bond_master(real_dev)) {
553 slave_warn(bond_dev, real_dev, "%s: no slave xdo_dev_state_delete\n", __func__);
554 goto out;
555 }
556
557 real_dev->xfrmdev_ops->xdo_dev_state_delete(xs);
558 out:
559 netdev_put(real_dev, &tracker);
560 mutex_lock(&bond->ipsec_lock);
561 list_for_each_entry(ipsec, &bond->ipsec_list, list) {
562 if (ipsec->xs == xs) {
563 list_del(&ipsec->list);
564 kfree(ipsec);
565 break;
566 }
567 }
568 mutex_unlock(&bond->ipsec_lock);
569 }
570
bond_ipsec_del_sa_all(struct bonding * bond)571 static void bond_ipsec_del_sa_all(struct bonding *bond)
572 {
573 struct net_device *bond_dev = bond->dev;
574 struct net_device *real_dev;
575 struct bond_ipsec *ipsec;
576 struct slave *slave;
577
578 slave = rtnl_dereference(bond->curr_active_slave);
579 real_dev = slave ? slave->dev : NULL;
580 if (!real_dev)
581 return;
582
583 mutex_lock(&bond->ipsec_lock);
584 list_for_each_entry(ipsec, &bond->ipsec_list, list) {
585 if (!ipsec->xs->xso.real_dev)
586 continue;
587
588 if (!real_dev->xfrmdev_ops ||
589 !real_dev->xfrmdev_ops->xdo_dev_state_delete ||
590 netif_is_bond_master(real_dev)) {
591 slave_warn(bond_dev, real_dev,
592 "%s: no slave xdo_dev_state_delete\n",
593 __func__);
594 } else {
595 real_dev->xfrmdev_ops->xdo_dev_state_delete(ipsec->xs);
596 if (real_dev->xfrmdev_ops->xdo_dev_state_free)
597 real_dev->xfrmdev_ops->xdo_dev_state_free(ipsec->xs);
598 }
599 }
600 mutex_unlock(&bond->ipsec_lock);
601 }
602
bond_ipsec_free_sa(struct xfrm_state * xs)603 static void bond_ipsec_free_sa(struct xfrm_state *xs)
604 {
605 struct net_device *bond_dev = xs->xso.dev;
606 struct net_device *real_dev;
607 netdevice_tracker tracker;
608 struct bonding *bond;
609 struct slave *slave;
610
611 if (!bond_dev)
612 return;
613
614 rcu_read_lock();
615 bond = netdev_priv(bond_dev);
616 slave = rcu_dereference(bond->curr_active_slave);
617 real_dev = slave ? slave->dev : NULL;
618 netdev_hold(real_dev, &tracker, GFP_ATOMIC);
619 rcu_read_unlock();
620
621 if (!slave)
622 goto out;
623
624 if (!xs->xso.real_dev)
625 goto out;
626
627 WARN_ON(xs->xso.real_dev != real_dev);
628
629 if (real_dev && real_dev->xfrmdev_ops &&
630 real_dev->xfrmdev_ops->xdo_dev_state_free)
631 real_dev->xfrmdev_ops->xdo_dev_state_free(xs);
632 out:
633 netdev_put(real_dev, &tracker);
634 }
635
636 /**
637 * bond_ipsec_offload_ok - can this packet use the xfrm hw offload
638 * @skb: current data packet
639 * @xs: pointer to transformer state struct
640 **/
bond_ipsec_offload_ok(struct sk_buff * skb,struct xfrm_state * xs)641 static bool bond_ipsec_offload_ok(struct sk_buff *skb, struct xfrm_state *xs)
642 {
643 struct net_device *bond_dev = xs->xso.dev;
644 struct net_device *real_dev;
645 struct slave *curr_active;
646 struct bonding *bond;
647 bool ok = false;
648
649 bond = netdev_priv(bond_dev);
650 rcu_read_lock();
651 curr_active = rcu_dereference(bond->curr_active_slave);
652 if (!curr_active)
653 goto out;
654 real_dev = curr_active->dev;
655
656 if (BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP)
657 goto out;
658
659 if (!xs->xso.real_dev)
660 goto out;
661
662 if (!real_dev->xfrmdev_ops ||
663 !real_dev->xfrmdev_ops->xdo_dev_offload_ok ||
664 netif_is_bond_master(real_dev))
665 goto out;
666
667 ok = real_dev->xfrmdev_ops->xdo_dev_offload_ok(skb, xs);
668 out:
669 rcu_read_unlock();
670 return ok;
671 }
672
673 static const struct xfrmdev_ops bond_xfrmdev_ops = {
674 .xdo_dev_state_add = bond_ipsec_add_sa,
675 .xdo_dev_state_delete = bond_ipsec_del_sa,
676 .xdo_dev_state_free = bond_ipsec_free_sa,
677 .xdo_dev_offload_ok = bond_ipsec_offload_ok,
678 };
679 #endif /* CONFIG_XFRM_OFFLOAD */
680
681 /*------------------------------- Link status -------------------------------*/
682
683 /* Set the carrier state for the master according to the state of its
684 * slaves. If any slaves are up, the master is up. In 802.3ad mode,
685 * do special 802.3ad magic.
686 *
687 * Returns zero if carrier state does not change, nonzero if it does.
688 */
bond_set_carrier(struct bonding * bond)689 int bond_set_carrier(struct bonding *bond)
690 {
691 struct list_head *iter;
692 struct slave *slave;
693
694 if (!bond_has_slaves(bond))
695 goto down;
696
697 if (BOND_MODE(bond) == BOND_MODE_8023AD)
698 return bond_3ad_set_carrier(bond);
699
700 bond_for_each_slave(bond, slave, iter) {
701 if (slave->link == BOND_LINK_UP) {
702 if (!netif_carrier_ok(bond->dev)) {
703 netif_carrier_on(bond->dev);
704 return 1;
705 }
706 return 0;
707 }
708 }
709
710 down:
711 if (netif_carrier_ok(bond->dev)) {
712 netif_carrier_off(bond->dev);
713 return 1;
714 }
715 return 0;
716 }
717
718 /* Get link speed and duplex from the slave's base driver
719 * using ethtool. If for some reason the call fails or the
720 * values are invalid, set speed and duplex to -1,
721 * and return. Return 1 if speed or duplex settings are
722 * UNKNOWN; 0 otherwise.
723 */
bond_update_speed_duplex(struct slave * slave)724 static int bond_update_speed_duplex(struct slave *slave)
725 {
726 struct net_device *slave_dev = slave->dev;
727 struct ethtool_link_ksettings ecmd;
728 int res;
729
730 slave->speed = SPEED_UNKNOWN;
731 slave->duplex = DUPLEX_UNKNOWN;
732
733 res = __ethtool_get_link_ksettings(slave_dev, &ecmd);
734 if (res < 0)
735 return 1;
736 if (ecmd.base.speed == 0 || ecmd.base.speed == ((__u32)-1))
737 return 1;
738 switch (ecmd.base.duplex) {
739 case DUPLEX_FULL:
740 case DUPLEX_HALF:
741 break;
742 default:
743 return 1;
744 }
745
746 slave->speed = ecmd.base.speed;
747 slave->duplex = ecmd.base.duplex;
748
749 return 0;
750 }
751
bond_slave_link_status(s8 link)752 const char *bond_slave_link_status(s8 link)
753 {
754 switch (link) {
755 case BOND_LINK_UP:
756 return "up";
757 case BOND_LINK_FAIL:
758 return "going down";
759 case BOND_LINK_DOWN:
760 return "down";
761 case BOND_LINK_BACK:
762 return "going back";
763 default:
764 return "unknown";
765 }
766 }
767
768 /* if <dev> supports MII link status reporting, check its link status.
769 *
770 * We either do MII/ETHTOOL ioctls, or check netif_carrier_ok(),
771 * depending upon the setting of the use_carrier parameter.
772 *
773 * Return either BMSR_LSTATUS, meaning that the link is up (or we
774 * can't tell and just pretend it is), or 0, meaning that the link is
775 * down.
776 *
777 * If reporting is non-zero, instead of faking link up, return -1 if
778 * both ETHTOOL and MII ioctls fail (meaning the device does not
779 * support them). If use_carrier is set, return whatever it says.
780 * It'd be nice if there was a good way to tell if a driver supports
781 * netif_carrier, but there really isn't.
782 */
bond_check_dev_link(struct bonding * bond,struct net_device * slave_dev,int reporting)783 static int bond_check_dev_link(struct bonding *bond,
784 struct net_device *slave_dev, int reporting)
785 {
786 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
787 int (*ioctl)(struct net_device *, struct ifreq *, int);
788 struct ifreq ifr;
789 struct mii_ioctl_data *mii;
790
791 if (!reporting && !netif_running(slave_dev))
792 return 0;
793
794 if (bond->params.use_carrier)
795 return netif_carrier_ok(slave_dev) ? BMSR_LSTATUS : 0;
796
797 /* Try to get link status using Ethtool first. */
798 if (slave_dev->ethtool_ops->get_link)
799 return slave_dev->ethtool_ops->get_link(slave_dev) ?
800 BMSR_LSTATUS : 0;
801
802 /* Ethtool can't be used, fallback to MII ioctls. */
803 ioctl = slave_ops->ndo_eth_ioctl;
804 if (ioctl) {
805 /* TODO: set pointer to correct ioctl on a per team member
806 * bases to make this more efficient. that is, once
807 * we determine the correct ioctl, we will always
808 * call it and not the others for that team
809 * member.
810 */
811
812 /* We cannot assume that SIOCGMIIPHY will also read a
813 * register; not all network drivers (e.g., e100)
814 * support that.
815 */
816
817 /* Yes, the mii is overlaid on the ifreq.ifr_ifru */
818 strscpy_pad(ifr.ifr_name, slave_dev->name, IFNAMSIZ);
819 mii = if_mii(&ifr);
820 if (ioctl(slave_dev, &ifr, SIOCGMIIPHY) == 0) {
821 mii->reg_num = MII_BMSR;
822 if (ioctl(slave_dev, &ifr, SIOCGMIIREG) == 0)
823 return mii->val_out & BMSR_LSTATUS;
824 }
825 }
826
827 /* If reporting, report that either there's no ndo_eth_ioctl,
828 * or both SIOCGMIIREG and get_link failed (meaning that we
829 * cannot report link status). If not reporting, pretend
830 * we're ok.
831 */
832 return reporting ? -1 : BMSR_LSTATUS;
833 }
834
835 /*----------------------------- Multicast list ------------------------------*/
836
837 /* Push the promiscuity flag down to appropriate slaves */
bond_set_promiscuity(struct bonding * bond,int inc)838 static int bond_set_promiscuity(struct bonding *bond, int inc)
839 {
840 struct list_head *iter;
841 int err = 0;
842
843 if (bond_uses_primary(bond)) {
844 struct slave *curr_active = rtnl_dereference(bond->curr_active_slave);
845
846 if (curr_active)
847 err = dev_set_promiscuity(curr_active->dev, inc);
848 } else {
849 struct slave *slave;
850
851 bond_for_each_slave(bond, slave, iter) {
852 err = dev_set_promiscuity(slave->dev, inc);
853 if (err)
854 return err;
855 }
856 }
857 return err;
858 }
859
860 /* Push the allmulti flag down to all slaves */
bond_set_allmulti(struct bonding * bond,int inc)861 static int bond_set_allmulti(struct bonding *bond, int inc)
862 {
863 struct list_head *iter;
864 int err = 0;
865
866 if (bond_uses_primary(bond)) {
867 struct slave *curr_active = rtnl_dereference(bond->curr_active_slave);
868
869 if (curr_active)
870 err = dev_set_allmulti(curr_active->dev, inc);
871 } else {
872 struct slave *slave;
873
874 bond_for_each_slave(bond, slave, iter) {
875 err = dev_set_allmulti(slave->dev, inc);
876 if (err)
877 return err;
878 }
879 }
880 return err;
881 }
882
883 /* Retrieve the list of registered multicast addresses for the bonding
884 * device and retransmit an IGMP JOIN request to the current active
885 * slave.
886 */
bond_resend_igmp_join_requests_delayed(struct work_struct * work)887 static void bond_resend_igmp_join_requests_delayed(struct work_struct *work)
888 {
889 struct bonding *bond = container_of(work, struct bonding,
890 mcast_work.work);
891
892 if (!rtnl_trylock()) {
893 queue_delayed_work(bond->wq, &bond->mcast_work, 1);
894 return;
895 }
896 call_netdevice_notifiers(NETDEV_RESEND_IGMP, bond->dev);
897
898 if (bond->igmp_retrans > 1) {
899 bond->igmp_retrans--;
900 queue_delayed_work(bond->wq, &bond->mcast_work, HZ/5);
901 }
902 rtnl_unlock();
903 }
904
905 /* Flush bond's hardware addresses from slave */
bond_hw_addr_flush(struct net_device * bond_dev,struct net_device * slave_dev)906 static void bond_hw_addr_flush(struct net_device *bond_dev,
907 struct net_device *slave_dev)
908 {
909 struct bonding *bond = netdev_priv(bond_dev);
910
911 dev_uc_unsync(slave_dev, bond_dev);
912 dev_mc_unsync(slave_dev, bond_dev);
913
914 if (BOND_MODE(bond) == BOND_MODE_8023AD)
915 dev_mc_del(slave_dev, lacpdu_mcast_addr);
916 }
917
918 /*--------------------------- Active slave change ---------------------------*/
919
920 /* Update the hardware address list and promisc/allmulti for the new and
921 * old active slaves (if any). Modes that are not using primary keep all
922 * slaves up date at all times; only the modes that use primary need to call
923 * this function to swap these settings during a failover.
924 */
bond_hw_addr_swap(struct bonding * bond,struct slave * new_active,struct slave * old_active)925 static void bond_hw_addr_swap(struct bonding *bond, struct slave *new_active,
926 struct slave *old_active)
927 {
928 if (old_active) {
929 if (bond->dev->flags & IFF_PROMISC)
930 dev_set_promiscuity(old_active->dev, -1);
931
932 if (bond->dev->flags & IFF_ALLMULTI)
933 dev_set_allmulti(old_active->dev, -1);
934
935 if (bond->dev->flags & IFF_UP)
936 bond_hw_addr_flush(bond->dev, old_active->dev);
937 }
938
939 if (new_active) {
940 /* FIXME: Signal errors upstream. */
941 if (bond->dev->flags & IFF_PROMISC)
942 dev_set_promiscuity(new_active->dev, 1);
943
944 if (bond->dev->flags & IFF_ALLMULTI)
945 dev_set_allmulti(new_active->dev, 1);
946
947 if (bond->dev->flags & IFF_UP) {
948 netif_addr_lock_bh(bond->dev);
949 dev_uc_sync(new_active->dev, bond->dev);
950 dev_mc_sync(new_active->dev, bond->dev);
951 netif_addr_unlock_bh(bond->dev);
952 }
953 }
954 }
955
956 /**
957 * bond_set_dev_addr - clone slave's address to bond
958 * @bond_dev: bond net device
959 * @slave_dev: slave net device
960 *
961 * Should be called with RTNL held.
962 */
bond_set_dev_addr(struct net_device * bond_dev,struct net_device * slave_dev)963 static int bond_set_dev_addr(struct net_device *bond_dev,
964 struct net_device *slave_dev)
965 {
966 int err;
967
968 slave_dbg(bond_dev, slave_dev, "bond_dev=%p slave_dev=%p slave_dev->addr_len=%d\n",
969 bond_dev, slave_dev, slave_dev->addr_len);
970 err = dev_pre_changeaddr_notify(bond_dev, slave_dev->dev_addr, NULL);
971 if (err)
972 return err;
973
974 __dev_addr_set(bond_dev, slave_dev->dev_addr, slave_dev->addr_len);
975 bond_dev->addr_assign_type = NET_ADDR_STOLEN;
976 call_netdevice_notifiers(NETDEV_CHANGEADDR, bond_dev);
977 return 0;
978 }
979
bond_get_old_active(struct bonding * bond,struct slave * new_active)980 static struct slave *bond_get_old_active(struct bonding *bond,
981 struct slave *new_active)
982 {
983 struct slave *slave;
984 struct list_head *iter;
985
986 bond_for_each_slave(bond, slave, iter) {
987 if (slave == new_active)
988 continue;
989
990 if (ether_addr_equal(bond->dev->dev_addr, slave->dev->dev_addr))
991 return slave;
992 }
993
994 return NULL;
995 }
996
997 /* bond_do_fail_over_mac
998 *
999 * Perform special MAC address swapping for fail_over_mac settings
1000 *
1001 * Called with RTNL
1002 */
bond_do_fail_over_mac(struct bonding * bond,struct slave * new_active,struct slave * old_active)1003 static void bond_do_fail_over_mac(struct bonding *bond,
1004 struct slave *new_active,
1005 struct slave *old_active)
1006 {
1007 u8 tmp_mac[MAX_ADDR_LEN];
1008 struct sockaddr_storage ss;
1009 int rv;
1010
1011 switch (bond->params.fail_over_mac) {
1012 case BOND_FOM_ACTIVE:
1013 if (new_active) {
1014 rv = bond_set_dev_addr(bond->dev, new_active->dev);
1015 if (rv)
1016 slave_err(bond->dev, new_active->dev, "Error %d setting bond MAC from slave\n",
1017 -rv);
1018 }
1019 break;
1020 case BOND_FOM_FOLLOW:
1021 /* if new_active && old_active, swap them
1022 * if just old_active, do nothing (going to no active slave)
1023 * if just new_active, set new_active to bond's MAC
1024 */
1025 if (!new_active)
1026 return;
1027
1028 if (!old_active)
1029 old_active = bond_get_old_active(bond, new_active);
1030
1031 if (old_active) {
1032 bond_hw_addr_copy(tmp_mac, new_active->dev->dev_addr,
1033 new_active->dev->addr_len);
1034 bond_hw_addr_copy(ss.__data,
1035 old_active->dev->dev_addr,
1036 old_active->dev->addr_len);
1037 ss.ss_family = new_active->dev->type;
1038 } else {
1039 bond_hw_addr_copy(ss.__data, bond->dev->dev_addr,
1040 bond->dev->addr_len);
1041 ss.ss_family = bond->dev->type;
1042 }
1043
1044 rv = dev_set_mac_address(new_active->dev,
1045 (struct sockaddr *)&ss, NULL);
1046 if (rv) {
1047 slave_err(bond->dev, new_active->dev, "Error %d setting MAC of new active slave\n",
1048 -rv);
1049 goto out;
1050 }
1051
1052 if (!old_active)
1053 goto out;
1054
1055 bond_hw_addr_copy(ss.__data, tmp_mac,
1056 new_active->dev->addr_len);
1057 ss.ss_family = old_active->dev->type;
1058
1059 rv = dev_set_mac_address(old_active->dev,
1060 (struct sockaddr *)&ss, NULL);
1061 if (rv)
1062 slave_err(bond->dev, old_active->dev, "Error %d setting MAC of old active slave\n",
1063 -rv);
1064 out:
1065 break;
1066 default:
1067 netdev_err(bond->dev, "bond_do_fail_over_mac impossible: bad policy %d\n",
1068 bond->params.fail_over_mac);
1069 break;
1070 }
1071
1072 }
1073
1074 /**
1075 * bond_choose_primary_or_current - select the primary or high priority slave
1076 * @bond: our bonding struct
1077 *
1078 * - Check if there is a primary link. If the primary link was set and is up,
1079 * go on and do link reselection.
1080 *
1081 * - If primary link is not set or down, find the highest priority link.
1082 * If the highest priority link is not current slave, set it as primary
1083 * link and do link reselection.
1084 */
bond_choose_primary_or_current(struct bonding * bond)1085 static struct slave *bond_choose_primary_or_current(struct bonding *bond)
1086 {
1087 struct slave *prim = rtnl_dereference(bond->primary_slave);
1088 struct slave *curr = rtnl_dereference(bond->curr_active_slave);
1089 struct slave *slave, *hprio = NULL;
1090 struct list_head *iter;
1091
1092 if (!prim || prim->link != BOND_LINK_UP) {
1093 bond_for_each_slave(bond, slave, iter) {
1094 if (slave->link == BOND_LINK_UP) {
1095 hprio = hprio ?: slave;
1096 if (slave->prio > hprio->prio)
1097 hprio = slave;
1098 }
1099 }
1100
1101 if (hprio && hprio != curr) {
1102 prim = hprio;
1103 goto link_reselect;
1104 }
1105
1106 if (!curr || curr->link != BOND_LINK_UP)
1107 return NULL;
1108 return curr;
1109 }
1110
1111 if (bond->force_primary) {
1112 bond->force_primary = false;
1113 return prim;
1114 }
1115
1116 link_reselect:
1117 if (!curr || curr->link != BOND_LINK_UP)
1118 return prim;
1119
1120 /* At this point, prim and curr are both up */
1121 switch (bond->params.primary_reselect) {
1122 case BOND_PRI_RESELECT_ALWAYS:
1123 return prim;
1124 case BOND_PRI_RESELECT_BETTER:
1125 if (prim->speed < curr->speed)
1126 return curr;
1127 if (prim->speed == curr->speed && prim->duplex <= curr->duplex)
1128 return curr;
1129 return prim;
1130 case BOND_PRI_RESELECT_FAILURE:
1131 return curr;
1132 default:
1133 netdev_err(bond->dev, "impossible primary_reselect %d\n",
1134 bond->params.primary_reselect);
1135 return curr;
1136 }
1137 }
1138
1139 /**
1140 * bond_find_best_slave - select the best available slave to be the active one
1141 * @bond: our bonding struct
1142 */
bond_find_best_slave(struct bonding * bond)1143 static struct slave *bond_find_best_slave(struct bonding *bond)
1144 {
1145 struct slave *slave, *bestslave = NULL;
1146 struct list_head *iter;
1147 int mintime = bond->params.updelay;
1148
1149 slave = bond_choose_primary_or_current(bond);
1150 if (slave)
1151 return slave;
1152
1153 bond_for_each_slave(bond, slave, iter) {
1154 if (slave->link == BOND_LINK_UP)
1155 return slave;
1156 if (slave->link == BOND_LINK_BACK && bond_slave_is_up(slave) &&
1157 slave->delay < mintime) {
1158 mintime = slave->delay;
1159 bestslave = slave;
1160 }
1161 }
1162
1163 return bestslave;
1164 }
1165
1166 /* must be called in RCU critical section or with RTNL held */
bond_should_notify_peers(struct bonding * bond)1167 static bool bond_should_notify_peers(struct bonding *bond)
1168 {
1169 struct slave *slave = rcu_dereference_rtnl(bond->curr_active_slave);
1170
1171 if (!slave || !bond->send_peer_notif ||
1172 bond->send_peer_notif %
1173 max(1, bond->params.peer_notif_delay) != 0 ||
1174 !netif_carrier_ok(bond->dev) ||
1175 test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state))
1176 return false;
1177
1178 netdev_dbg(bond->dev, "bond_should_notify_peers: slave %s\n",
1179 slave ? slave->dev->name : "NULL");
1180
1181 return true;
1182 }
1183
1184 /**
1185 * bond_change_active_slave - change the active slave into the specified one
1186 * @bond: our bonding struct
1187 * @new_active: the new slave to make the active one
1188 *
1189 * Set the new slave to the bond's settings and unset them on the old
1190 * curr_active_slave.
1191 * Setting include flags, mc-list, promiscuity, allmulti, etc.
1192 *
1193 * If @new's link state is %BOND_LINK_BACK we'll set it to %BOND_LINK_UP,
1194 * because it is apparently the best available slave we have, even though its
1195 * updelay hasn't timed out yet.
1196 *
1197 * Caller must hold RTNL.
1198 */
bond_change_active_slave(struct bonding * bond,struct slave * new_active)1199 void bond_change_active_slave(struct bonding *bond, struct slave *new_active)
1200 {
1201 struct slave *old_active;
1202
1203 ASSERT_RTNL();
1204
1205 old_active = rtnl_dereference(bond->curr_active_slave);
1206
1207 if (old_active == new_active)
1208 return;
1209
1210 #ifdef CONFIG_XFRM_OFFLOAD
1211 bond_ipsec_del_sa_all(bond);
1212 #endif /* CONFIG_XFRM_OFFLOAD */
1213
1214 if (new_active) {
1215 new_active->last_link_up = jiffies;
1216
1217 if (new_active->link == BOND_LINK_BACK) {
1218 if (bond_uses_primary(bond)) {
1219 slave_info(bond->dev, new_active->dev, "making interface the new active one %d ms earlier\n",
1220 (bond->params.updelay - new_active->delay) * bond->params.miimon);
1221 }
1222
1223 new_active->delay = 0;
1224 bond_set_slave_link_state(new_active, BOND_LINK_UP,
1225 BOND_SLAVE_NOTIFY_NOW);
1226
1227 if (BOND_MODE(bond) == BOND_MODE_8023AD)
1228 bond_3ad_handle_link_change(new_active, BOND_LINK_UP);
1229
1230 if (bond_is_lb(bond))
1231 bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP);
1232 } else {
1233 if (bond_uses_primary(bond))
1234 slave_info(bond->dev, new_active->dev, "making interface the new active one\n");
1235 }
1236 }
1237
1238 if (bond_uses_primary(bond))
1239 bond_hw_addr_swap(bond, new_active, old_active);
1240
1241 if (bond_is_lb(bond)) {
1242 bond_alb_handle_active_change(bond, new_active);
1243 if (old_active)
1244 bond_set_slave_inactive_flags(old_active,
1245 BOND_SLAVE_NOTIFY_NOW);
1246 if (new_active)
1247 bond_set_slave_active_flags(new_active,
1248 BOND_SLAVE_NOTIFY_NOW);
1249 } else {
1250 rcu_assign_pointer(bond->curr_active_slave, new_active);
1251 }
1252
1253 if (BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP) {
1254 if (old_active)
1255 bond_set_slave_inactive_flags(old_active,
1256 BOND_SLAVE_NOTIFY_NOW);
1257
1258 if (new_active) {
1259 bool should_notify_peers = false;
1260
1261 bond_set_slave_active_flags(new_active,
1262 BOND_SLAVE_NOTIFY_NOW);
1263
1264 if (bond->params.fail_over_mac)
1265 bond_do_fail_over_mac(bond, new_active,
1266 old_active);
1267
1268 if (netif_running(bond->dev)) {
1269 bond->send_peer_notif =
1270 bond->params.num_peer_notif *
1271 max(1, bond->params.peer_notif_delay);
1272 should_notify_peers =
1273 bond_should_notify_peers(bond);
1274 }
1275
1276 call_netdevice_notifiers(NETDEV_BONDING_FAILOVER, bond->dev);
1277 if (should_notify_peers) {
1278 bond->send_peer_notif--;
1279 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS,
1280 bond->dev);
1281 }
1282 }
1283 }
1284
1285 #ifdef CONFIG_XFRM_OFFLOAD
1286 bond_ipsec_add_sa_all(bond);
1287 #endif /* CONFIG_XFRM_OFFLOAD */
1288
1289 /* resend IGMP joins since active slave has changed or
1290 * all were sent on curr_active_slave.
1291 * resend only if bond is brought up with the affected
1292 * bonding modes and the retransmission is enabled
1293 */
1294 if (netif_running(bond->dev) && (bond->params.resend_igmp > 0) &&
1295 ((bond_uses_primary(bond) && new_active) ||
1296 BOND_MODE(bond) == BOND_MODE_ROUNDROBIN)) {
1297 bond->igmp_retrans = bond->params.resend_igmp;
1298 queue_delayed_work(bond->wq, &bond->mcast_work, 1);
1299 }
1300 }
1301
1302 /**
1303 * bond_select_active_slave - select a new active slave, if needed
1304 * @bond: our bonding struct
1305 *
1306 * This functions should be called when one of the following occurs:
1307 * - The old curr_active_slave has been released or lost its link.
1308 * - The primary_slave has got its link back.
1309 * - A slave has got its link back and there's no old curr_active_slave.
1310 *
1311 * Caller must hold RTNL.
1312 */
bond_select_active_slave(struct bonding * bond)1313 void bond_select_active_slave(struct bonding *bond)
1314 {
1315 struct slave *best_slave;
1316 int rv;
1317
1318 ASSERT_RTNL();
1319
1320 best_slave = bond_find_best_slave(bond);
1321 if (best_slave != rtnl_dereference(bond->curr_active_slave)) {
1322 bond_change_active_slave(bond, best_slave);
1323 rv = bond_set_carrier(bond);
1324 if (!rv)
1325 return;
1326
1327 if (netif_carrier_ok(bond->dev))
1328 netdev_info(bond->dev, "active interface up!\n");
1329 else
1330 netdev_info(bond->dev, "now running without any active interface!\n");
1331 }
1332 }
1333
1334 #ifdef CONFIG_NET_POLL_CONTROLLER
slave_enable_netpoll(struct slave * slave)1335 static inline int slave_enable_netpoll(struct slave *slave)
1336 {
1337 struct netpoll *np;
1338 int err = 0;
1339
1340 np = kzalloc(sizeof(*np), GFP_KERNEL);
1341 err = -ENOMEM;
1342 if (!np)
1343 goto out;
1344
1345 err = __netpoll_setup(np, slave->dev);
1346 if (err) {
1347 kfree(np);
1348 goto out;
1349 }
1350 slave->np = np;
1351 out:
1352 return err;
1353 }
slave_disable_netpoll(struct slave * slave)1354 static inline void slave_disable_netpoll(struct slave *slave)
1355 {
1356 struct netpoll *np = slave->np;
1357
1358 if (!np)
1359 return;
1360
1361 slave->np = NULL;
1362
1363 __netpoll_free(np);
1364 }
1365
bond_poll_controller(struct net_device * bond_dev)1366 static void bond_poll_controller(struct net_device *bond_dev)
1367 {
1368 struct bonding *bond = netdev_priv(bond_dev);
1369 struct slave *slave = NULL;
1370 struct list_head *iter;
1371 struct ad_info ad_info;
1372
1373 if (BOND_MODE(bond) == BOND_MODE_8023AD)
1374 if (bond_3ad_get_active_agg_info(bond, &ad_info))
1375 return;
1376
1377 bond_for_each_slave_rcu(bond, slave, iter) {
1378 if (!bond_slave_is_up(slave))
1379 continue;
1380
1381 if (BOND_MODE(bond) == BOND_MODE_8023AD) {
1382 struct aggregator *agg =
1383 SLAVE_AD_INFO(slave)->port.aggregator;
1384
1385 if (agg &&
1386 agg->aggregator_identifier != ad_info.aggregator_id)
1387 continue;
1388 }
1389
1390 netpoll_poll_dev(slave->dev);
1391 }
1392 }
1393
bond_netpoll_cleanup(struct net_device * bond_dev)1394 static void bond_netpoll_cleanup(struct net_device *bond_dev)
1395 {
1396 struct bonding *bond = netdev_priv(bond_dev);
1397 struct list_head *iter;
1398 struct slave *slave;
1399
1400 bond_for_each_slave(bond, slave, iter)
1401 if (bond_slave_is_up(slave))
1402 slave_disable_netpoll(slave);
1403 }
1404
bond_netpoll_setup(struct net_device * dev,struct netpoll_info * ni)1405 static int bond_netpoll_setup(struct net_device *dev, struct netpoll_info *ni)
1406 {
1407 struct bonding *bond = netdev_priv(dev);
1408 struct list_head *iter;
1409 struct slave *slave;
1410 int err = 0;
1411
1412 bond_for_each_slave(bond, slave, iter) {
1413 err = slave_enable_netpoll(slave);
1414 if (err) {
1415 bond_netpoll_cleanup(dev);
1416 break;
1417 }
1418 }
1419 return err;
1420 }
1421 #else
slave_enable_netpoll(struct slave * slave)1422 static inline int slave_enable_netpoll(struct slave *slave)
1423 {
1424 return 0;
1425 }
slave_disable_netpoll(struct slave * slave)1426 static inline void slave_disable_netpoll(struct slave *slave)
1427 {
1428 }
bond_netpoll_cleanup(struct net_device * bond_dev)1429 static void bond_netpoll_cleanup(struct net_device *bond_dev)
1430 {
1431 }
1432 #endif
1433
1434 /*---------------------------------- IOCTL ----------------------------------*/
1435
bond_fix_features(struct net_device * dev,netdev_features_t features)1436 static netdev_features_t bond_fix_features(struct net_device *dev,
1437 netdev_features_t features)
1438 {
1439 struct bonding *bond = netdev_priv(dev);
1440 struct list_head *iter;
1441 netdev_features_t mask;
1442 struct slave *slave;
1443
1444 mask = features;
1445
1446 features &= ~NETIF_F_ONE_FOR_ALL;
1447 features |= NETIF_F_ALL_FOR_ALL;
1448
1449 bond_for_each_slave(bond, slave, iter) {
1450 features = netdev_increment_features(features,
1451 slave->dev->features,
1452 mask);
1453 }
1454 features = netdev_add_tso_features(features, mask);
1455
1456 return features;
1457 }
1458
1459 #define BOND_VLAN_FEATURES (NETIF_F_HW_CSUM | NETIF_F_SG | \
1460 NETIF_F_FRAGLIST | NETIF_F_GSO_SOFTWARE | \
1461 NETIF_F_HIGHDMA | NETIF_F_LRO)
1462
1463 #define BOND_ENC_FEATURES (NETIF_F_HW_CSUM | NETIF_F_SG | \
1464 NETIF_F_RXCSUM | NETIF_F_GSO_SOFTWARE)
1465
1466 #define BOND_MPLS_FEATURES (NETIF_F_HW_CSUM | NETIF_F_SG | \
1467 NETIF_F_GSO_SOFTWARE)
1468
1469
bond_compute_features(struct bonding * bond)1470 static void bond_compute_features(struct bonding *bond)
1471 {
1472 unsigned int dst_release_flag = IFF_XMIT_DST_RELEASE |
1473 IFF_XMIT_DST_RELEASE_PERM;
1474 netdev_features_t vlan_features = BOND_VLAN_FEATURES;
1475 netdev_features_t enc_features = BOND_ENC_FEATURES;
1476 #ifdef CONFIG_XFRM_OFFLOAD
1477 netdev_features_t xfrm_features = BOND_XFRM_FEATURES;
1478 #endif /* CONFIG_XFRM_OFFLOAD */
1479 netdev_features_t mpls_features = BOND_MPLS_FEATURES;
1480 struct net_device *bond_dev = bond->dev;
1481 struct list_head *iter;
1482 struct slave *slave;
1483 unsigned short max_hard_header_len = ETH_HLEN;
1484 unsigned int tso_max_size = TSO_MAX_SIZE;
1485 u16 tso_max_segs = TSO_MAX_SEGS;
1486
1487 if (!bond_has_slaves(bond))
1488 goto done;
1489 vlan_features &= NETIF_F_ALL_FOR_ALL;
1490 mpls_features &= NETIF_F_ALL_FOR_ALL;
1491
1492 bond_for_each_slave(bond, slave, iter) {
1493 vlan_features = netdev_increment_features(vlan_features,
1494 slave->dev->vlan_features, BOND_VLAN_FEATURES);
1495
1496 enc_features = netdev_increment_features(enc_features,
1497 slave->dev->hw_enc_features,
1498 BOND_ENC_FEATURES);
1499
1500 #ifdef CONFIG_XFRM_OFFLOAD
1501 xfrm_features = netdev_increment_features(xfrm_features,
1502 slave->dev->hw_enc_features,
1503 BOND_XFRM_FEATURES);
1504 #endif /* CONFIG_XFRM_OFFLOAD */
1505
1506 mpls_features = netdev_increment_features(mpls_features,
1507 slave->dev->mpls_features,
1508 BOND_MPLS_FEATURES);
1509
1510 dst_release_flag &= slave->dev->priv_flags;
1511 if (slave->dev->hard_header_len > max_hard_header_len)
1512 max_hard_header_len = slave->dev->hard_header_len;
1513
1514 tso_max_size = min(tso_max_size, slave->dev->tso_max_size);
1515 tso_max_segs = min(tso_max_segs, slave->dev->tso_max_segs);
1516 }
1517 bond_dev->hard_header_len = max_hard_header_len;
1518
1519 done:
1520 bond_dev->vlan_features = vlan_features;
1521 bond_dev->hw_enc_features = enc_features | NETIF_F_GSO_ENCAP_ALL |
1522 NETIF_F_HW_VLAN_CTAG_TX |
1523 NETIF_F_HW_VLAN_STAG_TX;
1524 #ifdef CONFIG_XFRM_OFFLOAD
1525 bond_dev->hw_enc_features |= xfrm_features;
1526 #endif /* CONFIG_XFRM_OFFLOAD */
1527 bond_dev->mpls_features = mpls_features;
1528 netif_set_tso_max_segs(bond_dev, tso_max_segs);
1529 netif_set_tso_max_size(bond_dev, tso_max_size);
1530
1531 bond_dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
1532 if ((bond_dev->priv_flags & IFF_XMIT_DST_RELEASE_PERM) &&
1533 dst_release_flag == (IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM))
1534 bond_dev->priv_flags |= IFF_XMIT_DST_RELEASE;
1535
1536 netdev_change_features(bond_dev);
1537 }
1538
bond_setup_by_slave(struct net_device * bond_dev,struct net_device * slave_dev)1539 static void bond_setup_by_slave(struct net_device *bond_dev,
1540 struct net_device *slave_dev)
1541 {
1542 bool was_up = !!(bond_dev->flags & IFF_UP);
1543
1544 dev_close(bond_dev);
1545
1546 bond_dev->header_ops = slave_dev->header_ops;
1547
1548 bond_dev->type = slave_dev->type;
1549 bond_dev->hard_header_len = slave_dev->hard_header_len;
1550 bond_dev->needed_headroom = slave_dev->needed_headroom;
1551 bond_dev->addr_len = slave_dev->addr_len;
1552
1553 memcpy(bond_dev->broadcast, slave_dev->broadcast,
1554 slave_dev->addr_len);
1555
1556 if (slave_dev->flags & IFF_POINTOPOINT) {
1557 bond_dev->flags &= ~(IFF_BROADCAST | IFF_MULTICAST);
1558 bond_dev->flags |= (IFF_POINTOPOINT | IFF_NOARP);
1559 }
1560 if (was_up)
1561 dev_open(bond_dev, NULL);
1562 }
1563
1564 /* On bonding slaves other than the currently active slave, suppress
1565 * duplicates except for alb non-mcast/bcast.
1566 */
bond_should_deliver_exact_match(struct sk_buff * skb,struct slave * slave,struct bonding * bond)1567 static bool bond_should_deliver_exact_match(struct sk_buff *skb,
1568 struct slave *slave,
1569 struct bonding *bond)
1570 {
1571 if (bond_is_slave_inactive(slave)) {
1572 if (BOND_MODE(bond) == BOND_MODE_ALB &&
1573 skb->pkt_type != PACKET_BROADCAST &&
1574 skb->pkt_type != PACKET_MULTICAST)
1575 return false;
1576 return true;
1577 }
1578 return false;
1579 }
1580
bond_handle_frame(struct sk_buff ** pskb)1581 static rx_handler_result_t bond_handle_frame(struct sk_buff **pskb)
1582 {
1583 struct sk_buff *skb = *pskb;
1584 struct slave *slave;
1585 struct bonding *bond;
1586 int (*recv_probe)(const struct sk_buff *, struct bonding *,
1587 struct slave *);
1588 int ret = RX_HANDLER_ANOTHER;
1589
1590 skb = skb_share_check(skb, GFP_ATOMIC);
1591 if (unlikely(!skb))
1592 return RX_HANDLER_CONSUMED;
1593
1594 *pskb = skb;
1595
1596 slave = bond_slave_get_rcu(skb->dev);
1597 bond = slave->bond;
1598
1599 recv_probe = READ_ONCE(bond->recv_probe);
1600 if (recv_probe) {
1601 ret = recv_probe(skb, bond, slave);
1602 if (ret == RX_HANDLER_CONSUMED) {
1603 consume_skb(skb);
1604 return ret;
1605 }
1606 }
1607
1608 /*
1609 * For packets determined by bond_should_deliver_exact_match() call to
1610 * be suppressed we want to make an exception for link-local packets.
1611 * This is necessary for e.g. LLDP daemons to be able to monitor
1612 * inactive slave links without being forced to bind to them
1613 * explicitly.
1614 *
1615 * At the same time, packets that are passed to the bonding master
1616 * (including link-local ones) can have their originating interface
1617 * determined via PACKET_ORIGDEV socket option.
1618 */
1619 if (bond_should_deliver_exact_match(skb, slave, bond)) {
1620 if (is_link_local_ether_addr(eth_hdr(skb)->h_dest))
1621 return RX_HANDLER_PASS;
1622 return RX_HANDLER_EXACT;
1623 }
1624
1625 skb->dev = bond->dev;
1626
1627 if (BOND_MODE(bond) == BOND_MODE_ALB &&
1628 netif_is_bridge_port(bond->dev) &&
1629 skb->pkt_type == PACKET_HOST) {
1630
1631 if (unlikely(skb_cow_head(skb,
1632 skb->data - skb_mac_header(skb)))) {
1633 kfree_skb(skb);
1634 return RX_HANDLER_CONSUMED;
1635 }
1636 bond_hw_addr_copy(eth_hdr(skb)->h_dest, bond->dev->dev_addr,
1637 bond->dev->addr_len);
1638 }
1639
1640 return ret;
1641 }
1642
bond_lag_tx_type(struct bonding * bond)1643 static enum netdev_lag_tx_type bond_lag_tx_type(struct bonding *bond)
1644 {
1645 switch (BOND_MODE(bond)) {
1646 case BOND_MODE_ROUNDROBIN:
1647 return NETDEV_LAG_TX_TYPE_ROUNDROBIN;
1648 case BOND_MODE_ACTIVEBACKUP:
1649 return NETDEV_LAG_TX_TYPE_ACTIVEBACKUP;
1650 case BOND_MODE_BROADCAST:
1651 return NETDEV_LAG_TX_TYPE_BROADCAST;
1652 case BOND_MODE_XOR:
1653 case BOND_MODE_8023AD:
1654 return NETDEV_LAG_TX_TYPE_HASH;
1655 default:
1656 return NETDEV_LAG_TX_TYPE_UNKNOWN;
1657 }
1658 }
1659
bond_lag_hash_type(struct bonding * bond,enum netdev_lag_tx_type type)1660 static enum netdev_lag_hash bond_lag_hash_type(struct bonding *bond,
1661 enum netdev_lag_tx_type type)
1662 {
1663 if (type != NETDEV_LAG_TX_TYPE_HASH)
1664 return NETDEV_LAG_HASH_NONE;
1665
1666 switch (bond->params.xmit_policy) {
1667 case BOND_XMIT_POLICY_LAYER2:
1668 return NETDEV_LAG_HASH_L2;
1669 case BOND_XMIT_POLICY_LAYER34:
1670 return NETDEV_LAG_HASH_L34;
1671 case BOND_XMIT_POLICY_LAYER23:
1672 return NETDEV_LAG_HASH_L23;
1673 case BOND_XMIT_POLICY_ENCAP23:
1674 return NETDEV_LAG_HASH_E23;
1675 case BOND_XMIT_POLICY_ENCAP34:
1676 return NETDEV_LAG_HASH_E34;
1677 case BOND_XMIT_POLICY_VLAN_SRCMAC:
1678 return NETDEV_LAG_HASH_VLAN_SRCMAC;
1679 default:
1680 return NETDEV_LAG_HASH_UNKNOWN;
1681 }
1682 }
1683
bond_master_upper_dev_link(struct bonding * bond,struct slave * slave,struct netlink_ext_ack * extack)1684 static int bond_master_upper_dev_link(struct bonding *bond, struct slave *slave,
1685 struct netlink_ext_ack *extack)
1686 {
1687 struct netdev_lag_upper_info lag_upper_info;
1688 enum netdev_lag_tx_type type;
1689 int err;
1690
1691 type = bond_lag_tx_type(bond);
1692 lag_upper_info.tx_type = type;
1693 lag_upper_info.hash_type = bond_lag_hash_type(bond, type);
1694
1695 err = netdev_master_upper_dev_link(slave->dev, bond->dev, slave,
1696 &lag_upper_info, extack);
1697 if (err)
1698 return err;
1699
1700 slave->dev->flags |= IFF_SLAVE;
1701 return 0;
1702 }
1703
bond_upper_dev_unlink(struct bonding * bond,struct slave * slave)1704 static void bond_upper_dev_unlink(struct bonding *bond, struct slave *slave)
1705 {
1706 netdev_upper_dev_unlink(slave->dev, bond->dev);
1707 slave->dev->flags &= ~IFF_SLAVE;
1708 }
1709
slave_kobj_release(struct kobject * kobj)1710 static void slave_kobj_release(struct kobject *kobj)
1711 {
1712 struct slave *slave = to_slave(kobj);
1713 struct bonding *bond = bond_get_bond_by_slave(slave);
1714
1715 cancel_delayed_work_sync(&slave->notify_work);
1716 if (BOND_MODE(bond) == BOND_MODE_8023AD)
1717 kfree(SLAVE_AD_INFO(slave));
1718
1719 kfree(slave);
1720 }
1721
1722 static struct kobj_type slave_ktype = {
1723 .release = slave_kobj_release,
1724 #ifdef CONFIG_SYSFS
1725 .sysfs_ops = &slave_sysfs_ops,
1726 #endif
1727 };
1728
bond_kobj_init(struct slave * slave)1729 static int bond_kobj_init(struct slave *slave)
1730 {
1731 int err;
1732
1733 err = kobject_init_and_add(&slave->kobj, &slave_ktype,
1734 &(slave->dev->dev.kobj), "bonding_slave");
1735 if (err)
1736 kobject_put(&slave->kobj);
1737
1738 return err;
1739 }
1740
bond_alloc_slave(struct bonding * bond,struct net_device * slave_dev)1741 static struct slave *bond_alloc_slave(struct bonding *bond,
1742 struct net_device *slave_dev)
1743 {
1744 struct slave *slave = NULL;
1745
1746 slave = kzalloc(sizeof(*slave), GFP_KERNEL);
1747 if (!slave)
1748 return NULL;
1749
1750 slave->bond = bond;
1751 slave->dev = slave_dev;
1752 INIT_DELAYED_WORK(&slave->notify_work, bond_netdev_notify_work);
1753
1754 if (bond_kobj_init(slave))
1755 return NULL;
1756
1757 if (BOND_MODE(bond) == BOND_MODE_8023AD) {
1758 SLAVE_AD_INFO(slave) = kzalloc(sizeof(struct ad_slave_info),
1759 GFP_KERNEL);
1760 if (!SLAVE_AD_INFO(slave)) {
1761 kobject_put(&slave->kobj);
1762 return NULL;
1763 }
1764 }
1765
1766 return slave;
1767 }
1768
bond_fill_ifbond(struct bonding * bond,struct ifbond * info)1769 static void bond_fill_ifbond(struct bonding *bond, struct ifbond *info)
1770 {
1771 info->bond_mode = BOND_MODE(bond);
1772 info->miimon = bond->params.miimon;
1773 info->num_slaves = bond->slave_cnt;
1774 }
1775
bond_fill_ifslave(struct slave * slave,struct ifslave * info)1776 static void bond_fill_ifslave(struct slave *slave, struct ifslave *info)
1777 {
1778 strcpy(info->slave_name, slave->dev->name);
1779 info->link = slave->link;
1780 info->state = bond_slave_state(slave);
1781 info->link_failure_count = slave->link_failure_count;
1782 }
1783
bond_netdev_notify_work(struct work_struct * _work)1784 static void bond_netdev_notify_work(struct work_struct *_work)
1785 {
1786 struct slave *slave = container_of(_work, struct slave,
1787 notify_work.work);
1788
1789 if (rtnl_trylock()) {
1790 struct netdev_bonding_info binfo;
1791
1792 bond_fill_ifslave(slave, &binfo.slave);
1793 bond_fill_ifbond(slave->bond, &binfo.master);
1794 netdev_bonding_info_change(slave->dev, &binfo);
1795 rtnl_unlock();
1796 } else {
1797 queue_delayed_work(slave->bond->wq, &slave->notify_work, 1);
1798 }
1799 }
1800
bond_queue_slave_event(struct slave * slave)1801 void bond_queue_slave_event(struct slave *slave)
1802 {
1803 queue_delayed_work(slave->bond->wq, &slave->notify_work, 0);
1804 }
1805
bond_lower_state_changed(struct slave * slave)1806 void bond_lower_state_changed(struct slave *slave)
1807 {
1808 struct netdev_lag_lower_state_info info;
1809
1810 info.link_up = slave->link == BOND_LINK_UP ||
1811 slave->link == BOND_LINK_FAIL;
1812 info.tx_enabled = bond_is_active_slave(slave);
1813 netdev_lower_state_changed(slave->dev, &info);
1814 }
1815
1816 #define BOND_NL_ERR(bond_dev, extack, errmsg) do { \
1817 if (extack) \
1818 NL_SET_ERR_MSG(extack, errmsg); \
1819 else \
1820 netdev_err(bond_dev, "Error: %s\n", errmsg); \
1821 } while (0)
1822
1823 #define SLAVE_NL_ERR(bond_dev, slave_dev, extack, errmsg) do { \
1824 if (extack) \
1825 NL_SET_ERR_MSG(extack, errmsg); \
1826 else \
1827 slave_err(bond_dev, slave_dev, "Error: %s\n", errmsg); \
1828 } while (0)
1829
1830 /* The bonding driver uses ether_setup() to convert a master bond device
1831 * to ARPHRD_ETHER, that resets the target netdevice's flags so we always
1832 * have to restore the IFF_MASTER flag, and only restore IFF_SLAVE and IFF_UP
1833 * if they were set
1834 */
bond_ether_setup(struct net_device * bond_dev)1835 static void bond_ether_setup(struct net_device *bond_dev)
1836 {
1837 unsigned int flags = bond_dev->flags & (IFF_SLAVE | IFF_UP);
1838
1839 ether_setup(bond_dev);
1840 bond_dev->flags |= IFF_MASTER | flags;
1841 bond_dev->priv_flags &= ~IFF_TX_SKB_SHARING;
1842 }
1843
bond_xdp_set_features(struct net_device * bond_dev)1844 void bond_xdp_set_features(struct net_device *bond_dev)
1845 {
1846 struct bonding *bond = netdev_priv(bond_dev);
1847 xdp_features_t val = NETDEV_XDP_ACT_MASK;
1848 struct list_head *iter;
1849 struct slave *slave;
1850
1851 ASSERT_RTNL();
1852
1853 if (!bond_xdp_check(bond) || !bond_has_slaves(bond)) {
1854 xdp_clear_features_flag(bond_dev);
1855 return;
1856 }
1857
1858 bond_for_each_slave(bond, slave, iter)
1859 val &= slave->dev->xdp_features;
1860
1861 val &= ~NETDEV_XDP_ACT_XSK_ZEROCOPY;
1862
1863 xdp_set_features_flag(bond_dev, val);
1864 }
1865
1866 /* enslave device <slave> to bond device <master> */
bond_enslave(struct net_device * bond_dev,struct net_device * slave_dev,struct netlink_ext_ack * extack)1867 int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev,
1868 struct netlink_ext_ack *extack)
1869 {
1870 struct bonding *bond = netdev_priv(bond_dev);
1871 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
1872 struct slave *new_slave = NULL, *prev_slave;
1873 struct sockaddr_storage ss;
1874 int link_reporting;
1875 int res = 0, i;
1876
1877 if (slave_dev->flags & IFF_MASTER &&
1878 !netif_is_bond_master(slave_dev)) {
1879 BOND_NL_ERR(bond_dev, extack,
1880 "Device type (master device) cannot be enslaved");
1881 return -EPERM;
1882 }
1883
1884 if (!bond->params.use_carrier &&
1885 slave_dev->ethtool_ops->get_link == NULL &&
1886 slave_ops->ndo_eth_ioctl == NULL) {
1887 slave_warn(bond_dev, slave_dev, "no link monitoring support\n");
1888 }
1889
1890 /* already in-use? */
1891 if (netdev_is_rx_handler_busy(slave_dev)) {
1892 SLAVE_NL_ERR(bond_dev, slave_dev, extack,
1893 "Device is in use and cannot be enslaved");
1894 return -EBUSY;
1895 }
1896
1897 if (bond_dev == slave_dev) {
1898 BOND_NL_ERR(bond_dev, extack, "Cannot enslave bond to itself.");
1899 return -EPERM;
1900 }
1901
1902 /* vlan challenged mutual exclusion */
1903 /* no need to lock since we're protected by rtnl_lock */
1904 if (slave_dev->features & NETIF_F_VLAN_CHALLENGED) {
1905 slave_dbg(bond_dev, slave_dev, "is NETIF_F_VLAN_CHALLENGED\n");
1906 if (vlan_uses_dev(bond_dev)) {
1907 SLAVE_NL_ERR(bond_dev, slave_dev, extack,
1908 "Can not enslave VLAN challenged device to VLAN enabled bond");
1909 return -EPERM;
1910 } else {
1911 slave_warn(bond_dev, slave_dev, "enslaved VLAN challenged slave. Adding VLANs will be blocked as long as it is part of bond.\n");
1912 }
1913 } else {
1914 slave_dbg(bond_dev, slave_dev, "is !NETIF_F_VLAN_CHALLENGED\n");
1915 }
1916
1917 if (slave_dev->features & NETIF_F_HW_ESP)
1918 slave_dbg(bond_dev, slave_dev, "is esp-hw-offload capable\n");
1919
1920 /* Old ifenslave binaries are no longer supported. These can
1921 * be identified with moderate accuracy by the state of the slave:
1922 * the current ifenslave will set the interface down prior to
1923 * enslaving it; the old ifenslave will not.
1924 */
1925 if (slave_dev->flags & IFF_UP) {
1926 SLAVE_NL_ERR(bond_dev, slave_dev, extack,
1927 "Device can not be enslaved while up");
1928 return -EPERM;
1929 }
1930
1931 /* set bonding device ether type by slave - bonding netdevices are
1932 * created with ether_setup, so when the slave type is not ARPHRD_ETHER
1933 * there is a need to override some of the type dependent attribs/funcs.
1934 *
1935 * bond ether type mutual exclusion - don't allow slaves of dissimilar
1936 * ether type (eg ARPHRD_ETHER and ARPHRD_INFINIBAND) share the same bond
1937 */
1938 if (!bond_has_slaves(bond)) {
1939 if (bond_dev->type != slave_dev->type) {
1940 slave_dbg(bond_dev, slave_dev, "change device type from %d to %d\n",
1941 bond_dev->type, slave_dev->type);
1942
1943 res = call_netdevice_notifiers(NETDEV_PRE_TYPE_CHANGE,
1944 bond_dev);
1945 res = notifier_to_errno(res);
1946 if (res) {
1947 slave_err(bond_dev, slave_dev, "refused to change device type\n");
1948 return -EBUSY;
1949 }
1950
1951 /* Flush unicast and multicast addresses */
1952 dev_uc_flush(bond_dev);
1953 dev_mc_flush(bond_dev);
1954
1955 if (slave_dev->type != ARPHRD_ETHER)
1956 bond_setup_by_slave(bond_dev, slave_dev);
1957 else
1958 bond_ether_setup(bond_dev);
1959
1960 call_netdevice_notifiers(NETDEV_POST_TYPE_CHANGE,
1961 bond_dev);
1962 }
1963 } else if (bond_dev->type != slave_dev->type) {
1964 SLAVE_NL_ERR(bond_dev, slave_dev, extack,
1965 "Device type is different from other slaves");
1966 return -EINVAL;
1967 }
1968
1969 if (slave_dev->type == ARPHRD_INFINIBAND &&
1970 BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP) {
1971 SLAVE_NL_ERR(bond_dev, slave_dev, extack,
1972 "Only active-backup mode is supported for infiniband slaves");
1973 res = -EOPNOTSUPP;
1974 goto err_undo_flags;
1975 }
1976
1977 if (!slave_ops->ndo_set_mac_address ||
1978 slave_dev->type == ARPHRD_INFINIBAND) {
1979 slave_warn(bond_dev, slave_dev, "The slave device specified does not support setting the MAC address\n");
1980 if (BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP &&
1981 bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
1982 if (!bond_has_slaves(bond)) {
1983 bond->params.fail_over_mac = BOND_FOM_ACTIVE;
1984 slave_warn(bond_dev, slave_dev, "Setting fail_over_mac to active for active-backup mode\n");
1985 } else {
1986 SLAVE_NL_ERR(bond_dev, slave_dev, extack,
1987 "Slave device does not support setting the MAC address, but fail_over_mac is not set to active");
1988 res = -EOPNOTSUPP;
1989 goto err_undo_flags;
1990 }
1991 }
1992 }
1993
1994 call_netdevice_notifiers(NETDEV_JOIN, slave_dev);
1995
1996 /* If this is the first slave, then we need to set the master's hardware
1997 * address to be the same as the slave's.
1998 */
1999 if (!bond_has_slaves(bond) &&
2000 bond->dev->addr_assign_type == NET_ADDR_RANDOM) {
2001 res = bond_set_dev_addr(bond->dev, slave_dev);
2002 if (res)
2003 goto err_undo_flags;
2004 }
2005
2006 new_slave = bond_alloc_slave(bond, slave_dev);
2007 if (!new_slave) {
2008 res = -ENOMEM;
2009 goto err_undo_flags;
2010 }
2011
2012 /* Set the new_slave's queue_id to be zero. Queue ID mapping
2013 * is set via sysfs or module option if desired.
2014 */
2015 new_slave->queue_id = 0;
2016
2017 /* Save slave's original mtu and then set it to match the bond */
2018 new_slave->original_mtu = slave_dev->mtu;
2019 res = dev_set_mtu(slave_dev, bond->dev->mtu);
2020 if (res) {
2021 slave_err(bond_dev, slave_dev, "Error %d calling dev_set_mtu\n", res);
2022 goto err_free;
2023 }
2024
2025 /* Save slave's original ("permanent") mac address for modes
2026 * that need it, and for restoring it upon release, and then
2027 * set it to the master's address
2028 */
2029 bond_hw_addr_copy(new_slave->perm_hwaddr, slave_dev->dev_addr,
2030 slave_dev->addr_len);
2031
2032 if (!bond->params.fail_over_mac ||
2033 BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP) {
2034 /* Set slave to master's mac address. The application already
2035 * set the master's mac address to that of the first slave
2036 */
2037 memcpy(ss.__data, bond_dev->dev_addr, bond_dev->addr_len);
2038 ss.ss_family = slave_dev->type;
2039 res = dev_set_mac_address(slave_dev, (struct sockaddr *)&ss,
2040 extack);
2041 if (res) {
2042 slave_err(bond_dev, slave_dev, "Error %d calling set_mac_address\n", res);
2043 goto err_restore_mtu;
2044 }
2045 }
2046
2047 /* set no_addrconf flag before open to prevent IPv6 addrconf */
2048 slave_dev->priv_flags |= IFF_NO_ADDRCONF;
2049
2050 /* open the slave since the application closed it */
2051 res = dev_open(slave_dev, extack);
2052 if (res) {
2053 slave_err(bond_dev, slave_dev, "Opening slave failed\n");
2054 goto err_restore_mac;
2055 }
2056
2057 slave_dev->priv_flags |= IFF_BONDING;
2058 /* initialize slave stats */
2059 dev_get_stats(new_slave->dev, &new_slave->slave_stats);
2060
2061 if (bond_is_lb(bond)) {
2062 /* bond_alb_init_slave() must be called before all other stages since
2063 * it might fail and we do not want to have to undo everything
2064 */
2065 res = bond_alb_init_slave(bond, new_slave);
2066 if (res)
2067 goto err_close;
2068 }
2069
2070 res = vlan_vids_add_by_dev(slave_dev, bond_dev);
2071 if (res) {
2072 slave_err(bond_dev, slave_dev, "Couldn't add bond vlan ids\n");
2073 goto err_close;
2074 }
2075
2076 prev_slave = bond_last_slave(bond);
2077
2078 new_slave->delay = 0;
2079 new_slave->link_failure_count = 0;
2080
2081 if (bond_update_speed_duplex(new_slave) &&
2082 bond_needs_speed_duplex(bond))
2083 new_slave->link = BOND_LINK_DOWN;
2084
2085 new_slave->last_rx = jiffies -
2086 (msecs_to_jiffies(bond->params.arp_interval) + 1);
2087 for (i = 0; i < BOND_MAX_ARP_TARGETS; i++)
2088 new_slave->target_last_arp_rx[i] = new_slave->last_rx;
2089
2090 new_slave->last_tx = new_slave->last_rx;
2091
2092 if (bond->params.miimon && !bond->params.use_carrier) {
2093 link_reporting = bond_check_dev_link(bond, slave_dev, 1);
2094
2095 if ((link_reporting == -1) && !bond->params.arp_interval) {
2096 /* miimon is set but a bonded network driver
2097 * does not support ETHTOOL/MII and
2098 * arp_interval is not set. Note: if
2099 * use_carrier is enabled, we will never go
2100 * here (because netif_carrier is always
2101 * supported); thus, we don't need to change
2102 * the messages for netif_carrier.
2103 */
2104 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");
2105 } else if (link_reporting == -1) {
2106 /* unable get link status using mii/ethtool */
2107 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");
2108 }
2109 }
2110
2111 /* check for initial state */
2112 new_slave->link = BOND_LINK_NOCHANGE;
2113 if (bond->params.miimon) {
2114 if (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS) {
2115 if (bond->params.updelay) {
2116 bond_set_slave_link_state(new_slave,
2117 BOND_LINK_BACK,
2118 BOND_SLAVE_NOTIFY_NOW);
2119 new_slave->delay = bond->params.updelay;
2120 } else {
2121 bond_set_slave_link_state(new_slave,
2122 BOND_LINK_UP,
2123 BOND_SLAVE_NOTIFY_NOW);
2124 }
2125 } else {
2126 bond_set_slave_link_state(new_slave, BOND_LINK_DOWN,
2127 BOND_SLAVE_NOTIFY_NOW);
2128 }
2129 } else if (bond->params.arp_interval) {
2130 bond_set_slave_link_state(new_slave,
2131 (netif_carrier_ok(slave_dev) ?
2132 BOND_LINK_UP : BOND_LINK_DOWN),
2133 BOND_SLAVE_NOTIFY_NOW);
2134 } else {
2135 bond_set_slave_link_state(new_slave, BOND_LINK_UP,
2136 BOND_SLAVE_NOTIFY_NOW);
2137 }
2138
2139 if (new_slave->link != BOND_LINK_DOWN)
2140 new_slave->last_link_up = jiffies;
2141 slave_dbg(bond_dev, slave_dev, "Initial state of slave is BOND_LINK_%s\n",
2142 new_slave->link == BOND_LINK_DOWN ? "DOWN" :
2143 (new_slave->link == BOND_LINK_UP ? "UP" : "BACK"));
2144
2145 if (bond_uses_primary(bond) && bond->params.primary[0]) {
2146 /* if there is a primary slave, remember it */
2147 if (strcmp(bond->params.primary, new_slave->dev->name) == 0) {
2148 rcu_assign_pointer(bond->primary_slave, new_slave);
2149 bond->force_primary = true;
2150 }
2151 }
2152
2153 switch (BOND_MODE(bond)) {
2154 case BOND_MODE_ACTIVEBACKUP:
2155 bond_set_slave_inactive_flags(new_slave,
2156 BOND_SLAVE_NOTIFY_NOW);
2157 break;
2158 case BOND_MODE_8023AD:
2159 /* in 802.3ad mode, the internal mechanism
2160 * will activate the slaves in the selected
2161 * aggregator
2162 */
2163 bond_set_slave_inactive_flags(new_slave, BOND_SLAVE_NOTIFY_NOW);
2164 /* if this is the first slave */
2165 if (!prev_slave) {
2166 SLAVE_AD_INFO(new_slave)->id = 1;
2167 /* Initialize AD with the number of times that the AD timer is called in 1 second
2168 * can be called only after the mac address of the bond is set
2169 */
2170 bond_3ad_initialize(bond);
2171 } else {
2172 SLAVE_AD_INFO(new_slave)->id =
2173 SLAVE_AD_INFO(prev_slave)->id + 1;
2174 }
2175
2176 bond_3ad_bind_slave(new_slave);
2177 break;
2178 case BOND_MODE_TLB:
2179 case BOND_MODE_ALB:
2180 bond_set_active_slave(new_slave);
2181 bond_set_slave_inactive_flags(new_slave, BOND_SLAVE_NOTIFY_NOW);
2182 break;
2183 default:
2184 slave_dbg(bond_dev, slave_dev, "This slave is always active in trunk mode\n");
2185
2186 /* always active in trunk mode */
2187 bond_set_active_slave(new_slave);
2188
2189 /* In trunking mode there is little meaning to curr_active_slave
2190 * anyway (it holds no special properties of the bond device),
2191 * so we can change it without calling change_active_interface()
2192 */
2193 if (!rcu_access_pointer(bond->curr_active_slave) &&
2194 new_slave->link == BOND_LINK_UP)
2195 rcu_assign_pointer(bond->curr_active_slave, new_slave);
2196
2197 break;
2198 } /* switch(bond_mode) */
2199
2200 #ifdef CONFIG_NET_POLL_CONTROLLER
2201 if (bond->dev->npinfo) {
2202 if (slave_enable_netpoll(new_slave)) {
2203 slave_info(bond_dev, slave_dev, "master_dev is using netpoll, but new slave device does not support netpoll\n");
2204 res = -EBUSY;
2205 goto err_detach;
2206 }
2207 }
2208 #endif
2209
2210 if (!(bond_dev->features & NETIF_F_LRO))
2211 dev_disable_lro(slave_dev);
2212
2213 res = netdev_rx_handler_register(slave_dev, bond_handle_frame,
2214 new_slave);
2215 if (res) {
2216 slave_dbg(bond_dev, slave_dev, "Error %d calling netdev_rx_handler_register\n", res);
2217 goto err_detach;
2218 }
2219
2220 res = bond_master_upper_dev_link(bond, new_slave, extack);
2221 if (res) {
2222 slave_dbg(bond_dev, slave_dev, "Error %d calling bond_master_upper_dev_link\n", res);
2223 goto err_unregister;
2224 }
2225
2226 bond_lower_state_changed(new_slave);
2227
2228 res = bond_sysfs_slave_add(new_slave);
2229 if (res) {
2230 slave_dbg(bond_dev, slave_dev, "Error %d calling bond_sysfs_slave_add\n", res);
2231 goto err_upper_unlink;
2232 }
2233
2234 /* If the mode uses primary, then the following is handled by
2235 * bond_change_active_slave().
2236 */
2237 if (!bond_uses_primary(bond)) {
2238 /* set promiscuity level to new slave */
2239 if (bond_dev->flags & IFF_PROMISC) {
2240 res = dev_set_promiscuity(slave_dev, 1);
2241 if (res)
2242 goto err_sysfs_del;
2243 }
2244
2245 /* set allmulti level to new slave */
2246 if (bond_dev->flags & IFF_ALLMULTI) {
2247 res = dev_set_allmulti(slave_dev, 1);
2248 if (res) {
2249 if (bond_dev->flags & IFF_PROMISC)
2250 dev_set_promiscuity(slave_dev, -1);
2251 goto err_sysfs_del;
2252 }
2253 }
2254
2255 if (bond_dev->flags & IFF_UP) {
2256 netif_addr_lock_bh(bond_dev);
2257 dev_mc_sync_multiple(slave_dev, bond_dev);
2258 dev_uc_sync_multiple(slave_dev, bond_dev);
2259 netif_addr_unlock_bh(bond_dev);
2260
2261 if (BOND_MODE(bond) == BOND_MODE_8023AD)
2262 dev_mc_add(slave_dev, lacpdu_mcast_addr);
2263 }
2264 }
2265
2266 bond->slave_cnt++;
2267 bond_compute_features(bond);
2268 bond_set_carrier(bond);
2269
2270 if (bond_uses_primary(bond)) {
2271 block_netpoll_tx();
2272 bond_select_active_slave(bond);
2273 unblock_netpoll_tx();
2274 }
2275
2276 if (bond_mode_can_use_xmit_hash(bond))
2277 bond_update_slave_arr(bond, NULL);
2278
2279
2280 if (!slave_dev->netdev_ops->ndo_bpf ||
2281 !slave_dev->netdev_ops->ndo_xdp_xmit) {
2282 if (bond->xdp_prog) {
2283 SLAVE_NL_ERR(bond_dev, slave_dev, extack,
2284 "Slave does not support XDP");
2285 res = -EOPNOTSUPP;
2286 goto err_sysfs_del;
2287 }
2288 } else if (bond->xdp_prog) {
2289 struct netdev_bpf xdp = {
2290 .command = XDP_SETUP_PROG,
2291 .flags = 0,
2292 .prog = bond->xdp_prog,
2293 .extack = extack,
2294 };
2295
2296 if (dev_xdp_prog_count(slave_dev) > 0) {
2297 SLAVE_NL_ERR(bond_dev, slave_dev, extack,
2298 "Slave has XDP program loaded, please unload before enslaving");
2299 res = -EOPNOTSUPP;
2300 goto err_sysfs_del;
2301 }
2302
2303 res = slave_dev->netdev_ops->ndo_bpf(slave_dev, &xdp);
2304 if (res < 0) {
2305 /* ndo_bpf() sets extack error message */
2306 slave_dbg(bond_dev, slave_dev, "Error %d calling ndo_bpf\n", res);
2307 goto err_sysfs_del;
2308 }
2309 if (bond->xdp_prog)
2310 bpf_prog_inc(bond->xdp_prog);
2311 }
2312
2313 bond_xdp_set_features(bond_dev);
2314
2315 slave_info(bond_dev, slave_dev, "Enslaving as %s interface with %s link\n",
2316 bond_is_active_slave(new_slave) ? "an active" : "a backup",
2317 new_slave->link != BOND_LINK_DOWN ? "an up" : "a down");
2318
2319 /* enslave is successful */
2320 bond_queue_slave_event(new_slave);
2321 return 0;
2322
2323 /* Undo stages on error */
2324 err_sysfs_del:
2325 bond_sysfs_slave_del(new_slave);
2326
2327 err_upper_unlink:
2328 bond_upper_dev_unlink(bond, new_slave);
2329
2330 err_unregister:
2331 netdev_rx_handler_unregister(slave_dev);
2332
2333 err_detach:
2334 vlan_vids_del_by_dev(slave_dev, bond_dev);
2335 if (rcu_access_pointer(bond->primary_slave) == new_slave)
2336 RCU_INIT_POINTER(bond->primary_slave, NULL);
2337 if (rcu_access_pointer(bond->curr_active_slave) == new_slave) {
2338 block_netpoll_tx();
2339 bond_change_active_slave(bond, NULL);
2340 bond_select_active_slave(bond);
2341 unblock_netpoll_tx();
2342 }
2343 /* either primary_slave or curr_active_slave might've changed */
2344 synchronize_rcu();
2345 slave_disable_netpoll(new_slave);
2346
2347 err_close:
2348 if (!netif_is_bond_master(slave_dev))
2349 slave_dev->priv_flags &= ~IFF_BONDING;
2350 dev_close(slave_dev);
2351
2352 err_restore_mac:
2353 slave_dev->priv_flags &= ~IFF_NO_ADDRCONF;
2354 if (!bond->params.fail_over_mac ||
2355 BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP) {
2356 /* XXX TODO - fom follow mode needs to change master's
2357 * MAC if this slave's MAC is in use by the bond, or at
2358 * least print a warning.
2359 */
2360 bond_hw_addr_copy(ss.__data, new_slave->perm_hwaddr,
2361 new_slave->dev->addr_len);
2362 ss.ss_family = slave_dev->type;
2363 dev_set_mac_address(slave_dev, (struct sockaddr *)&ss, NULL);
2364 }
2365
2366 err_restore_mtu:
2367 dev_set_mtu(slave_dev, new_slave->original_mtu);
2368
2369 err_free:
2370 kobject_put(&new_slave->kobj);
2371
2372 err_undo_flags:
2373 /* Enslave of first slave has failed and we need to fix master's mac */
2374 if (!bond_has_slaves(bond)) {
2375 if (ether_addr_equal_64bits(bond_dev->dev_addr,
2376 slave_dev->dev_addr))
2377 eth_hw_addr_random(bond_dev);
2378 if (bond_dev->type != ARPHRD_ETHER) {
2379 dev_close(bond_dev);
2380 bond_ether_setup(bond_dev);
2381 }
2382 }
2383
2384 return res;
2385 }
2386
2387 /* Try to release the slave device <slave> from the bond device <master>
2388 * It is legal to access curr_active_slave without a lock because all the function
2389 * is RTNL-locked. If "all" is true it means that the function is being called
2390 * while destroying a bond interface and all slaves are being released.
2391 *
2392 * The rules for slave state should be:
2393 * for Active/Backup:
2394 * Active stays on all backups go down
2395 * for Bonded connections:
2396 * The first up interface should be left on and all others downed.
2397 */
__bond_release_one(struct net_device * bond_dev,struct net_device * slave_dev,bool all,bool unregister)2398 static int __bond_release_one(struct net_device *bond_dev,
2399 struct net_device *slave_dev,
2400 bool all, bool unregister)
2401 {
2402 struct bonding *bond = netdev_priv(bond_dev);
2403 struct slave *slave, *oldcurrent;
2404 struct sockaddr_storage ss;
2405 int old_flags = bond_dev->flags;
2406 netdev_features_t old_features = bond_dev->features;
2407
2408 /* slave is not a slave or master is not master of this slave */
2409 if (!(slave_dev->flags & IFF_SLAVE) ||
2410 !netdev_has_upper_dev(slave_dev, bond_dev)) {
2411 slave_dbg(bond_dev, slave_dev, "cannot release slave\n");
2412 return -EINVAL;
2413 }
2414
2415 block_netpoll_tx();
2416
2417 slave = bond_get_slave_by_dev(bond, slave_dev);
2418 if (!slave) {
2419 /* not a slave of this bond */
2420 slave_info(bond_dev, slave_dev, "interface not enslaved\n");
2421 unblock_netpoll_tx();
2422 return -EINVAL;
2423 }
2424
2425 bond_set_slave_inactive_flags(slave, BOND_SLAVE_NOTIFY_NOW);
2426
2427 bond_sysfs_slave_del(slave);
2428
2429 /* recompute stats just before removing the slave */
2430 bond_get_stats(bond->dev, &bond->bond_stats);
2431
2432 if (bond->xdp_prog) {
2433 struct netdev_bpf xdp = {
2434 .command = XDP_SETUP_PROG,
2435 .flags = 0,
2436 .prog = NULL,
2437 .extack = NULL,
2438 };
2439 if (slave_dev->netdev_ops->ndo_bpf(slave_dev, &xdp))
2440 slave_warn(bond_dev, slave_dev, "failed to unload XDP program\n");
2441 }
2442
2443 /* unregister rx_handler early so bond_handle_frame wouldn't be called
2444 * for this slave anymore.
2445 */
2446 netdev_rx_handler_unregister(slave_dev);
2447
2448 if (BOND_MODE(bond) == BOND_MODE_8023AD)
2449 bond_3ad_unbind_slave(slave);
2450
2451 bond_upper_dev_unlink(bond, slave);
2452
2453 if (bond_mode_can_use_xmit_hash(bond))
2454 bond_update_slave_arr(bond, slave);
2455
2456 slave_info(bond_dev, slave_dev, "Releasing %s interface\n",
2457 bond_is_active_slave(slave) ? "active" : "backup");
2458
2459 oldcurrent = rcu_access_pointer(bond->curr_active_slave);
2460
2461 RCU_INIT_POINTER(bond->current_arp_slave, NULL);
2462
2463 if (!all && (!bond->params.fail_over_mac ||
2464 BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP)) {
2465 if (ether_addr_equal_64bits(bond_dev->dev_addr, slave->perm_hwaddr) &&
2466 bond_has_slaves(bond))
2467 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",
2468 slave->perm_hwaddr);
2469 }
2470
2471 if (rtnl_dereference(bond->primary_slave) == slave)
2472 RCU_INIT_POINTER(bond->primary_slave, NULL);
2473
2474 if (oldcurrent == slave)
2475 bond_change_active_slave(bond, NULL);
2476
2477 if (bond_is_lb(bond)) {
2478 /* Must be called only after the slave has been
2479 * detached from the list and the curr_active_slave
2480 * has been cleared (if our_slave == old_current),
2481 * but before a new active slave is selected.
2482 */
2483 bond_alb_deinit_slave(bond, slave);
2484 }
2485
2486 if (all) {
2487 RCU_INIT_POINTER(bond->curr_active_slave, NULL);
2488 } else if (oldcurrent == slave) {
2489 /* Note that we hold RTNL over this sequence, so there
2490 * is no concern that another slave add/remove event
2491 * will interfere.
2492 */
2493 bond_select_active_slave(bond);
2494 }
2495
2496 bond_set_carrier(bond);
2497 if (!bond_has_slaves(bond))
2498 eth_hw_addr_random(bond_dev);
2499
2500 unblock_netpoll_tx();
2501 synchronize_rcu();
2502 bond->slave_cnt--;
2503
2504 if (!bond_has_slaves(bond)) {
2505 call_netdevice_notifiers(NETDEV_CHANGEADDR, bond->dev);
2506 call_netdevice_notifiers(NETDEV_RELEASE, bond->dev);
2507 }
2508
2509 bond_compute_features(bond);
2510 if (!(bond_dev->features & NETIF_F_VLAN_CHALLENGED) &&
2511 (old_features & NETIF_F_VLAN_CHALLENGED))
2512 slave_info(bond_dev, slave_dev, "last VLAN challenged slave left bond - VLAN blocking is removed\n");
2513
2514 vlan_vids_del_by_dev(slave_dev, bond_dev);
2515
2516 /* If the mode uses primary, then this case was handled above by
2517 * bond_change_active_slave(..., NULL)
2518 */
2519 if (!bond_uses_primary(bond)) {
2520 /* unset promiscuity level from slave
2521 * NOTE: The NETDEV_CHANGEADDR call above may change the value
2522 * of the IFF_PROMISC flag in the bond_dev, but we need the
2523 * value of that flag before that change, as that was the value
2524 * when this slave was attached, so we cache at the start of the
2525 * function and use it here. Same goes for ALLMULTI below
2526 */
2527 if (old_flags & IFF_PROMISC)
2528 dev_set_promiscuity(slave_dev, -1);
2529
2530 /* unset allmulti level from slave */
2531 if (old_flags & IFF_ALLMULTI)
2532 dev_set_allmulti(slave_dev, -1);
2533
2534 if (old_flags & IFF_UP)
2535 bond_hw_addr_flush(bond_dev, slave_dev);
2536 }
2537
2538 slave_disable_netpoll(slave);
2539
2540 /* close slave before restoring its mac address */
2541 dev_close(slave_dev);
2542
2543 slave_dev->priv_flags &= ~IFF_NO_ADDRCONF;
2544
2545 if (bond->params.fail_over_mac != BOND_FOM_ACTIVE ||
2546 BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP) {
2547 /* restore original ("permanent") mac address */
2548 bond_hw_addr_copy(ss.__data, slave->perm_hwaddr,
2549 slave->dev->addr_len);
2550 ss.ss_family = slave_dev->type;
2551 dev_set_mac_address(slave_dev, (struct sockaddr *)&ss, NULL);
2552 }
2553
2554 if (unregister)
2555 __dev_set_mtu(slave_dev, slave->original_mtu);
2556 else
2557 dev_set_mtu(slave_dev, slave->original_mtu);
2558
2559 if (!netif_is_bond_master(slave_dev))
2560 slave_dev->priv_flags &= ~IFF_BONDING;
2561
2562 bond_xdp_set_features(bond_dev);
2563 kobject_put(&slave->kobj);
2564
2565 return 0;
2566 }
2567
2568 /* A wrapper used because of ndo_del_link */
bond_release(struct net_device * bond_dev,struct net_device * slave_dev)2569 int bond_release(struct net_device *bond_dev, struct net_device *slave_dev)
2570 {
2571 return __bond_release_one(bond_dev, slave_dev, false, false);
2572 }
2573
2574 /* First release a slave and then destroy the bond if no more slaves are left.
2575 * Must be under rtnl_lock when this function is called.
2576 */
bond_release_and_destroy(struct net_device * bond_dev,struct net_device * slave_dev)2577 static int bond_release_and_destroy(struct net_device *bond_dev,
2578 struct net_device *slave_dev)
2579 {
2580 struct bonding *bond = netdev_priv(bond_dev);
2581 int ret;
2582
2583 ret = __bond_release_one(bond_dev, slave_dev, false, true);
2584 if (ret == 0 && !bond_has_slaves(bond) &&
2585 bond_dev->reg_state != NETREG_UNREGISTERING) {
2586 bond_dev->priv_flags |= IFF_DISABLE_NETPOLL;
2587 netdev_info(bond_dev, "Destroying bond\n");
2588 bond_remove_proc_entry(bond);
2589 unregister_netdevice(bond_dev);
2590 }
2591 return ret;
2592 }
2593
bond_info_query(struct net_device * bond_dev,struct ifbond * info)2594 static void bond_info_query(struct net_device *bond_dev, struct ifbond *info)
2595 {
2596 struct bonding *bond = netdev_priv(bond_dev);
2597
2598 bond_fill_ifbond(bond, info);
2599 }
2600
bond_slave_info_query(struct net_device * bond_dev,struct ifslave * info)2601 static int bond_slave_info_query(struct net_device *bond_dev, struct ifslave *info)
2602 {
2603 struct bonding *bond = netdev_priv(bond_dev);
2604 struct list_head *iter;
2605 int i = 0, res = -ENODEV;
2606 struct slave *slave;
2607
2608 bond_for_each_slave(bond, slave, iter) {
2609 if (i++ == (int)info->slave_id) {
2610 res = 0;
2611 bond_fill_ifslave(slave, info);
2612 break;
2613 }
2614 }
2615
2616 return res;
2617 }
2618
2619 /*-------------------------------- Monitoring -------------------------------*/
2620
2621 /* called with rcu_read_lock() */
bond_miimon_inspect(struct bonding * bond)2622 static int bond_miimon_inspect(struct bonding *bond)
2623 {
2624 bool ignore_updelay = false;
2625 int link_state, commit = 0;
2626 struct list_head *iter;
2627 struct slave *slave;
2628
2629 if (BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP) {
2630 ignore_updelay = !rcu_dereference(bond->curr_active_slave);
2631 } else {
2632 struct bond_up_slave *usable_slaves;
2633
2634 usable_slaves = rcu_dereference(bond->usable_slaves);
2635
2636 if (usable_slaves && usable_slaves->count == 0)
2637 ignore_updelay = true;
2638 }
2639
2640 bond_for_each_slave_rcu(bond, slave, iter) {
2641 bond_propose_link_state(slave, BOND_LINK_NOCHANGE);
2642
2643 link_state = bond_check_dev_link(bond, slave->dev, 0);
2644
2645 switch (slave->link) {
2646 case BOND_LINK_UP:
2647 if (link_state)
2648 continue;
2649
2650 bond_propose_link_state(slave, BOND_LINK_FAIL);
2651 commit++;
2652 slave->delay = bond->params.downdelay;
2653 if (slave->delay) {
2654 slave_info(bond->dev, slave->dev, "link status down for %sinterface, disabling it in %d ms\n",
2655 (BOND_MODE(bond) ==
2656 BOND_MODE_ACTIVEBACKUP) ?
2657 (bond_is_active_slave(slave) ?
2658 "active " : "backup ") : "",
2659 bond->params.downdelay * bond->params.miimon);
2660 }
2661 fallthrough;
2662 case BOND_LINK_FAIL:
2663 if (link_state) {
2664 /* recovered before downdelay expired */
2665 bond_propose_link_state(slave, BOND_LINK_UP);
2666 slave->last_link_up = jiffies;
2667 slave_info(bond->dev, slave->dev, "link status up again after %d ms\n",
2668 (bond->params.downdelay - slave->delay) *
2669 bond->params.miimon);
2670 commit++;
2671 continue;
2672 }
2673
2674 if (slave->delay <= 0) {
2675 bond_propose_link_state(slave, BOND_LINK_DOWN);
2676 commit++;
2677 continue;
2678 }
2679
2680 slave->delay--;
2681 break;
2682
2683 case BOND_LINK_DOWN:
2684 if (!link_state)
2685 continue;
2686
2687 bond_propose_link_state(slave, BOND_LINK_BACK);
2688 commit++;
2689 slave->delay = bond->params.updelay;
2690
2691 if (slave->delay) {
2692 slave_info(bond->dev, slave->dev, "link status up, enabling it in %d ms\n",
2693 ignore_updelay ? 0 :
2694 bond->params.updelay *
2695 bond->params.miimon);
2696 }
2697 fallthrough;
2698 case BOND_LINK_BACK:
2699 if (!link_state) {
2700 bond_propose_link_state(slave, BOND_LINK_DOWN);
2701 slave_info(bond->dev, slave->dev, "link status down again after %d ms\n",
2702 (bond->params.updelay - slave->delay) *
2703 bond->params.miimon);
2704 commit++;
2705 continue;
2706 }
2707
2708 if (ignore_updelay)
2709 slave->delay = 0;
2710
2711 if (slave->delay <= 0) {
2712 bond_propose_link_state(slave, BOND_LINK_UP);
2713 commit++;
2714 ignore_updelay = false;
2715 continue;
2716 }
2717
2718 slave->delay--;
2719 break;
2720 }
2721 }
2722
2723 return commit;
2724 }
2725
bond_miimon_link_change(struct bonding * bond,struct slave * slave,char link)2726 static void bond_miimon_link_change(struct bonding *bond,
2727 struct slave *slave,
2728 char link)
2729 {
2730 switch (BOND_MODE(bond)) {
2731 case BOND_MODE_8023AD:
2732 bond_3ad_handle_link_change(slave, link);
2733 break;
2734 case BOND_MODE_TLB:
2735 case BOND_MODE_ALB:
2736 bond_alb_handle_link_change(bond, slave, link);
2737 break;
2738 case BOND_MODE_XOR:
2739 bond_update_slave_arr(bond, NULL);
2740 break;
2741 }
2742 }
2743
bond_miimon_commit(struct bonding * bond)2744 static void bond_miimon_commit(struct bonding *bond)
2745 {
2746 struct slave *slave, *primary, *active;
2747 bool do_failover = false;
2748 struct list_head *iter;
2749
2750 ASSERT_RTNL();
2751
2752 bond_for_each_slave(bond, slave, iter) {
2753 switch (slave->link_new_state) {
2754 case BOND_LINK_NOCHANGE:
2755 /* For 802.3ad mode, check current slave speed and
2756 * duplex again in case its port was disabled after
2757 * invalid speed/duplex reporting but recovered before
2758 * link monitoring could make a decision on the actual
2759 * link status
2760 */
2761 if (BOND_MODE(bond) == BOND_MODE_8023AD &&
2762 slave->link == BOND_LINK_UP)
2763 bond_3ad_adapter_speed_duplex_changed(slave);
2764 continue;
2765
2766 case BOND_LINK_UP:
2767 if (bond_update_speed_duplex(slave) &&
2768 bond_needs_speed_duplex(bond)) {
2769 slave->link = BOND_LINK_DOWN;
2770 if (net_ratelimit())
2771 slave_warn(bond->dev, slave->dev,
2772 "failed to get link speed/duplex\n");
2773 continue;
2774 }
2775 bond_set_slave_link_state(slave, BOND_LINK_UP,
2776 BOND_SLAVE_NOTIFY_NOW);
2777 slave->last_link_up = jiffies;
2778
2779 primary = rtnl_dereference(bond->primary_slave);
2780 if (BOND_MODE(bond) == BOND_MODE_8023AD) {
2781 /* prevent it from being the active one */
2782 bond_set_backup_slave(slave);
2783 } else if (BOND_MODE(bond) != BOND_MODE_ACTIVEBACKUP) {
2784 /* make it immediately active */
2785 bond_set_active_slave(slave);
2786 }
2787
2788 slave_info(bond->dev, slave->dev, "link status definitely up, %u Mbps %s duplex\n",
2789 slave->speed == SPEED_UNKNOWN ? 0 : slave->speed,
2790 slave->duplex ? "full" : "half");
2791
2792 bond_miimon_link_change(bond, slave, BOND_LINK_UP);
2793
2794 active = rtnl_dereference(bond->curr_active_slave);
2795 if (!active || slave == primary || slave->prio > active->prio)
2796 do_failover = true;
2797
2798 continue;
2799
2800 case BOND_LINK_DOWN:
2801 if (slave->link_failure_count < UINT_MAX)
2802 slave->link_failure_count++;
2803
2804 bond_set_slave_link_state(slave, BOND_LINK_DOWN,
2805 BOND_SLAVE_NOTIFY_NOW);
2806
2807 if (BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP ||
2808 BOND_MODE(bond) == BOND_MODE_8023AD)
2809 bond_set_slave_inactive_flags(slave,
2810 BOND_SLAVE_NOTIFY_NOW);
2811
2812 slave_info(bond->dev, slave->dev, "link status definitely down, disabling slave\n");
2813
2814 bond_miimon_link_change(bond, slave, BOND_LINK_DOWN);
2815
2816 if (slave == rcu_access_pointer(bond->curr_active_slave))
2817 do_failover = true;
2818
2819 continue;
2820
2821 default:
2822 slave_err(bond->dev, slave->dev, "invalid new link %d on slave\n",
2823 slave->link_new_state);
2824 bond_propose_link_state(slave, BOND_LINK_NOCHANGE);
2825
2826 continue;
2827 }
2828 }
2829
2830 if (do_failover) {
2831 block_netpoll_tx();
2832 bond_select_active_slave(bond);
2833 unblock_netpoll_tx();
2834 }
2835
2836 bond_set_carrier(bond);
2837 }
2838
2839 /* bond_mii_monitor
2840 *
2841 * Really a wrapper that splits the mii monitor into two phases: an
2842 * inspection, then (if inspection indicates something needs to be done)
2843 * an acquisition of appropriate locks followed by a commit phase to
2844 * implement whatever link state changes are indicated.
2845 */
bond_mii_monitor(struct work_struct * work)2846 static void bond_mii_monitor(struct work_struct *work)
2847 {
2848 struct bonding *bond = container_of(work, struct bonding,
2849 mii_work.work);
2850 bool should_notify_peers = false;
2851 bool commit;
2852 unsigned long delay;
2853 struct slave *slave;
2854 struct list_head *iter;
2855
2856 delay = msecs_to_jiffies(bond->params.miimon);
2857
2858 if (!bond_has_slaves(bond))
2859 goto re_arm;
2860
2861 rcu_read_lock();
2862 should_notify_peers = bond_should_notify_peers(bond);
2863 commit = !!bond_miimon_inspect(bond);
2864 if (bond->send_peer_notif) {
2865 rcu_read_unlock();
2866 if (rtnl_trylock()) {
2867 bond->send_peer_notif--;
2868 rtnl_unlock();
2869 }
2870 } else {
2871 rcu_read_unlock();
2872 }
2873
2874 if (commit) {
2875 /* Race avoidance with bond_close cancel of workqueue */
2876 if (!rtnl_trylock()) {
2877 delay = 1;
2878 should_notify_peers = false;
2879 goto re_arm;
2880 }
2881
2882 bond_for_each_slave(bond, slave, iter) {
2883 bond_commit_link_state(slave, BOND_SLAVE_NOTIFY_LATER);
2884 }
2885 bond_miimon_commit(bond);
2886
2887 rtnl_unlock(); /* might sleep, hold no other locks */
2888 }
2889
2890 re_arm:
2891 if (bond->params.miimon)
2892 queue_delayed_work(bond->wq, &bond->mii_work, delay);
2893
2894 if (should_notify_peers) {
2895 if (!rtnl_trylock())
2896 return;
2897 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, bond->dev);
2898 rtnl_unlock();
2899 }
2900 }
2901
bond_upper_dev_walk(struct net_device * upper,struct netdev_nested_priv * priv)2902 static int bond_upper_dev_walk(struct net_device *upper,
2903 struct netdev_nested_priv *priv)
2904 {
2905 __be32 ip = *(__be32 *)priv->data;
2906
2907 return ip == bond_confirm_addr(upper, 0, ip);
2908 }
2909
bond_has_this_ip(struct bonding * bond,__be32 ip)2910 static bool bond_has_this_ip(struct bonding *bond, __be32 ip)
2911 {
2912 struct netdev_nested_priv priv = {
2913 .data = (void *)&ip,
2914 };
2915 bool ret = false;
2916
2917 if (ip == bond_confirm_addr(bond->dev, 0, ip))
2918 return true;
2919
2920 rcu_read_lock();
2921 if (netdev_walk_all_upper_dev_rcu(bond->dev, bond_upper_dev_walk, &priv))
2922 ret = true;
2923 rcu_read_unlock();
2924
2925 return ret;
2926 }
2927
2928 #define BOND_VLAN_PROTO_NONE cpu_to_be16(0xffff)
2929
bond_handle_vlan(struct slave * slave,struct bond_vlan_tag * tags,struct sk_buff * skb)2930 static bool bond_handle_vlan(struct slave *slave, struct bond_vlan_tag *tags,
2931 struct sk_buff *skb)
2932 {
2933 struct net_device *bond_dev = slave->bond->dev;
2934 struct net_device *slave_dev = slave->dev;
2935 struct bond_vlan_tag *outer_tag = tags;
2936
2937 if (!tags || tags->vlan_proto == BOND_VLAN_PROTO_NONE)
2938 return true;
2939
2940 tags++;
2941
2942 /* Go through all the tags backwards and add them to the packet */
2943 while (tags->vlan_proto != BOND_VLAN_PROTO_NONE) {
2944 if (!tags->vlan_id) {
2945 tags++;
2946 continue;
2947 }
2948
2949 slave_dbg(bond_dev, slave_dev, "inner tag: proto %X vid %X\n",
2950 ntohs(outer_tag->vlan_proto), tags->vlan_id);
2951 skb = vlan_insert_tag_set_proto(skb, tags->vlan_proto,
2952 tags->vlan_id);
2953 if (!skb) {
2954 net_err_ratelimited("failed to insert inner VLAN tag\n");
2955 return false;
2956 }
2957
2958 tags++;
2959 }
2960 /* Set the outer tag */
2961 if (outer_tag->vlan_id) {
2962 slave_dbg(bond_dev, slave_dev, "outer tag: proto %X vid %X\n",
2963 ntohs(outer_tag->vlan_proto), outer_tag->vlan_id);
2964 __vlan_hwaccel_put_tag(skb, outer_tag->vlan_proto,
2965 outer_tag->vlan_id);
2966 }
2967
2968 return true;
2969 }
2970
2971 /* We go to the (large) trouble of VLAN tagging ARP frames because
2972 * switches in VLAN mode (especially if ports are configured as
2973 * "native" to a VLAN) might not pass non-tagged frames.
2974 */
bond_arp_send(struct slave * slave,int arp_op,__be32 dest_ip,__be32 src_ip,struct bond_vlan_tag * tags)2975 static void bond_arp_send(struct slave *slave, int arp_op, __be32 dest_ip,
2976 __be32 src_ip, struct bond_vlan_tag *tags)
2977 {
2978 struct net_device *bond_dev = slave->bond->dev;
2979 struct net_device *slave_dev = slave->dev;
2980 struct sk_buff *skb;
2981
2982 slave_dbg(bond_dev, slave_dev, "arp %d on slave: dst %pI4 src %pI4\n",
2983 arp_op, &dest_ip, &src_ip);
2984
2985 skb = arp_create(arp_op, ETH_P_ARP, dest_ip, slave_dev, src_ip,
2986 NULL, slave_dev->dev_addr, NULL);
2987
2988 if (!skb) {
2989 net_err_ratelimited("ARP packet allocation failed\n");
2990 return;
2991 }
2992
2993 if (bond_handle_vlan(slave, tags, skb)) {
2994 slave_update_last_tx(slave);
2995 arp_xmit(skb);
2996 }
2997
2998 return;
2999 }
3000
3001 /* Validate the device path between the @start_dev and the @end_dev.
3002 * The path is valid if the @end_dev is reachable through device
3003 * stacking.
3004 * When the path is validated, collect any vlan information in the
3005 * path.
3006 */
bond_verify_device_path(struct net_device * start_dev,struct net_device * end_dev,int level)3007 struct bond_vlan_tag *bond_verify_device_path(struct net_device *start_dev,
3008 struct net_device *end_dev,
3009 int level)
3010 {
3011 struct bond_vlan_tag *tags;
3012 struct net_device *upper;
3013 struct list_head *iter;
3014
3015 if (start_dev == end_dev) {
3016 tags = kcalloc(level + 1, sizeof(*tags), GFP_ATOMIC);
3017 if (!tags)
3018 return ERR_PTR(-ENOMEM);
3019 tags[level].vlan_proto = BOND_VLAN_PROTO_NONE;
3020 return tags;
3021 }
3022
3023 netdev_for_each_upper_dev_rcu(start_dev, upper, iter) {
3024 tags = bond_verify_device_path(upper, end_dev, level + 1);
3025 if (IS_ERR_OR_NULL(tags)) {
3026 if (IS_ERR(tags))
3027 return tags;
3028 continue;
3029 }
3030 if (is_vlan_dev(upper)) {
3031 tags[level].vlan_proto = vlan_dev_vlan_proto(upper);
3032 tags[level].vlan_id = vlan_dev_vlan_id(upper);
3033 }
3034
3035 return tags;
3036 }
3037
3038 return NULL;
3039 }
3040
bond_arp_send_all(struct bonding * bond,struct slave * slave)3041 static void bond_arp_send_all(struct bonding *bond, struct slave *slave)
3042 {
3043 struct rtable *rt;
3044 struct bond_vlan_tag *tags;
3045 __be32 *targets = bond->params.arp_targets, addr;
3046 int i;
3047
3048 for (i = 0; i < BOND_MAX_ARP_TARGETS && targets[i]; i++) {
3049 slave_dbg(bond->dev, slave->dev, "%s: target %pI4\n",
3050 __func__, &targets[i]);
3051 tags = NULL;
3052
3053 /* Find out through which dev should the packet go */
3054 rt = ip_route_output(dev_net(bond->dev), targets[i], 0,
3055 RTO_ONLINK, 0);
3056 if (IS_ERR(rt)) {
3057 /* there's no route to target - try to send arp
3058 * probe to generate any traffic (arp_validate=0)
3059 */
3060 if (bond->params.arp_validate)
3061 pr_warn_once("%s: no route to arp_ip_target %pI4 and arp_validate is set\n",
3062 bond->dev->name,
3063 &targets[i]);
3064 bond_arp_send(slave, ARPOP_REQUEST, targets[i],
3065 0, tags);
3066 continue;
3067 }
3068
3069 /* bond device itself */
3070 if (rt->dst.dev == bond->dev)
3071 goto found;
3072
3073 rcu_read_lock();
3074 tags = bond_verify_device_path(bond->dev, rt->dst.dev, 0);
3075 rcu_read_unlock();
3076
3077 if (!IS_ERR_OR_NULL(tags))
3078 goto found;
3079
3080 /* Not our device - skip */
3081 slave_dbg(bond->dev, slave->dev, "no path to arp_ip_target %pI4 via rt.dev %s\n",
3082 &targets[i], rt->dst.dev ? rt->dst.dev->name : "NULL");
3083
3084 ip_rt_put(rt);
3085 continue;
3086
3087 found:
3088 addr = bond_confirm_addr(rt->dst.dev, targets[i], 0);
3089 ip_rt_put(rt);
3090 bond_arp_send(slave, ARPOP_REQUEST, targets[i], addr, tags);
3091 kfree(tags);
3092 }
3093 }
3094
bond_validate_arp(struct bonding * bond,struct slave * slave,__be32 sip,__be32 tip)3095 static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 sip, __be32 tip)
3096 {
3097 int i;
3098
3099 if (!sip || !bond_has_this_ip(bond, tip)) {
3100 slave_dbg(bond->dev, slave->dev, "%s: sip %pI4 tip %pI4 not found\n",
3101 __func__, &sip, &tip);
3102 return;
3103 }
3104
3105 i = bond_get_targets_ip(bond->params.arp_targets, sip);
3106 if (i == -1) {
3107 slave_dbg(bond->dev, slave->dev, "%s: sip %pI4 not found in targets\n",
3108 __func__, &sip);
3109 return;
3110 }
3111 slave->last_rx = jiffies;
3112 slave->target_last_arp_rx[i] = jiffies;
3113 }
3114
bond_arp_rcv(const struct sk_buff * skb,struct bonding * bond,struct slave * slave)3115 static int bond_arp_rcv(const struct sk_buff *skb, struct bonding *bond,
3116 struct slave *slave)
3117 {
3118 struct arphdr *arp = (struct arphdr *)skb->data;
3119 struct slave *curr_active_slave, *curr_arp_slave;
3120 unsigned char *arp_ptr;
3121 __be32 sip, tip;
3122 unsigned int alen;
3123
3124 alen = arp_hdr_len(bond->dev);
3125
3126 if (alen > skb_headlen(skb)) {
3127 arp = kmalloc(alen, GFP_ATOMIC);
3128 if (!arp)
3129 goto out_unlock;
3130 if (skb_copy_bits(skb, 0, arp, alen) < 0)
3131 goto out_unlock;
3132 }
3133
3134 if (arp->ar_hln != bond->dev->addr_len ||
3135 skb->pkt_type == PACKET_OTHERHOST ||
3136 skb->pkt_type == PACKET_LOOPBACK ||
3137 arp->ar_hrd != htons(ARPHRD_ETHER) ||
3138 arp->ar_pro != htons(ETH_P_IP) ||
3139 arp->ar_pln != 4)
3140 goto out_unlock;
3141
3142 arp_ptr = (unsigned char *)(arp + 1);
3143 arp_ptr += bond->dev->addr_len;
3144 memcpy(&sip, arp_ptr, 4);
3145 arp_ptr += 4 + bond->dev->addr_len;
3146 memcpy(&tip, arp_ptr, 4);
3147
3148 slave_dbg(bond->dev, slave->dev, "%s: %s/%d av %d sv %d sip %pI4 tip %pI4\n",
3149 __func__, slave->dev->name, bond_slave_state(slave),
3150 bond->params.arp_validate, slave_do_arp_validate(bond, slave),
3151 &sip, &tip);
3152
3153 curr_active_slave = rcu_dereference(bond->curr_active_slave);
3154 curr_arp_slave = rcu_dereference(bond->current_arp_slave);
3155
3156 /* We 'trust' the received ARP enough to validate it if:
3157 *
3158 * (a) the slave receiving the ARP is active (which includes the
3159 * current ARP slave, if any), or
3160 *
3161 * (b) the receiving slave isn't active, but there is a currently
3162 * active slave and it received valid arp reply(s) after it became
3163 * the currently active slave, or
3164 *
3165 * (c) there is an ARP slave that sent an ARP during the prior ARP
3166 * interval, and we receive an ARP reply on any slave. We accept
3167 * these because switch FDB update delays may deliver the ARP
3168 * reply to a slave other than the sender of the ARP request.
3169 *
3170 * Note: for (b), backup slaves are receiving the broadcast ARP
3171 * request, not a reply. This request passes from the sending
3172 * slave through the L2 switch(es) to the receiving slave. Since
3173 * this is checking the request, sip/tip are swapped for
3174 * validation.
3175 *
3176 * This is done to avoid endless looping when we can't reach the
3177 * arp_ip_target and fool ourselves with our own arp requests.
3178 */
3179 if (bond_is_active_slave(slave))
3180 bond_validate_arp(bond, slave, sip, tip);
3181 else if (curr_active_slave &&
3182 time_after(slave_last_rx(bond, curr_active_slave),
3183 curr_active_slave->last_link_up))
3184 bond_validate_arp(bond, slave, tip, sip);
3185 else if (curr_arp_slave && (arp->ar_op == htons(ARPOP_REPLY)) &&
3186 bond_time_in_interval(bond, slave_last_tx(curr_arp_slave), 1))
3187 bond_validate_arp(bond, slave, sip, tip);
3188
3189 out_unlock:
3190 if (arp != (struct arphdr *)skb->data)
3191 kfree(arp);
3192 return RX_HANDLER_ANOTHER;
3193 }
3194
3195 #if IS_ENABLED(CONFIG_IPV6)
bond_ns_send(struct slave * slave,const struct in6_addr * daddr,const struct in6_addr * saddr,struct bond_vlan_tag * tags)3196 static void bond_ns_send(struct slave *slave, const struct in6_addr *daddr,
3197 const struct in6_addr *saddr, struct bond_vlan_tag *tags)
3198 {
3199 struct net_device *bond_dev = slave->bond->dev;
3200 struct net_device *slave_dev = slave->dev;
3201 struct in6_addr mcaddr;
3202 struct sk_buff *skb;
3203
3204 slave_dbg(bond_dev, slave_dev, "NS on slave: dst %pI6c src %pI6c\n",
3205 daddr, saddr);
3206
3207 skb = ndisc_ns_create(slave_dev, daddr, saddr, 0);
3208 if (!skb) {
3209 net_err_ratelimited("NS packet allocation failed\n");
3210 return;
3211 }
3212
3213 addrconf_addr_solict_mult(daddr, &mcaddr);
3214 if (bond_handle_vlan(slave, tags, skb)) {
3215 slave_update_last_tx(slave);
3216 ndisc_send_skb(skb, &mcaddr, saddr);
3217 }
3218 }
3219
bond_ns_send_all(struct bonding * bond,struct slave * slave)3220 static void bond_ns_send_all(struct bonding *bond, struct slave *slave)
3221 {
3222 struct in6_addr *targets = bond->params.ns_targets;
3223 struct bond_vlan_tag *tags;
3224 struct dst_entry *dst;
3225 struct in6_addr saddr;
3226 struct flowi6 fl6;
3227 int i;
3228
3229 for (i = 0; i < BOND_MAX_NS_TARGETS && !ipv6_addr_any(&targets[i]); i++) {
3230 slave_dbg(bond->dev, slave->dev, "%s: target %pI6c\n",
3231 __func__, &targets[i]);
3232 tags = NULL;
3233
3234 /* Find out through which dev should the packet go */
3235 memset(&fl6, 0, sizeof(struct flowi6));
3236 fl6.daddr = targets[i];
3237 fl6.flowi6_oif = bond->dev->ifindex;
3238
3239 dst = ip6_route_output(dev_net(bond->dev), NULL, &fl6);
3240 if (dst->error) {
3241 dst_release(dst);
3242 /* there's no route to target - try to send arp
3243 * probe to generate any traffic (arp_validate=0)
3244 */
3245 if (bond->params.arp_validate)
3246 pr_warn_once("%s: no route to ns_ip6_target %pI6c and arp_validate is set\n",
3247 bond->dev->name,
3248 &targets[i]);
3249 bond_ns_send(slave, &targets[i], &in6addr_any, tags);
3250 continue;
3251 }
3252
3253 /* bond device itself */
3254 if (dst->dev == bond->dev)
3255 goto found;
3256
3257 rcu_read_lock();
3258 tags = bond_verify_device_path(bond->dev, dst->dev, 0);
3259 rcu_read_unlock();
3260
3261 if (!IS_ERR_OR_NULL(tags))
3262 goto found;
3263
3264 /* Not our device - skip */
3265 slave_dbg(bond->dev, slave->dev, "no path to ns_ip6_target %pI6c via dst->dev %s\n",
3266 &targets[i], dst->dev ? dst->dev->name : "NULL");
3267
3268 dst_release(dst);
3269 continue;
3270
3271 found:
3272 if (!ipv6_dev_get_saddr(dev_net(dst->dev), dst->dev, &targets[i], 0, &saddr))
3273 bond_ns_send(slave, &targets[i], &saddr, tags);
3274 else
3275 bond_ns_send(slave, &targets[i], &in6addr_any, tags);
3276
3277 dst_release(dst);
3278 kfree(tags);
3279 }
3280 }
3281
bond_confirm_addr6(struct net_device * dev,struct netdev_nested_priv * priv)3282 static int bond_confirm_addr6(struct net_device *dev,
3283 struct netdev_nested_priv *priv)
3284 {
3285 struct in6_addr *addr = (struct in6_addr *)priv->data;
3286
3287 return ipv6_chk_addr(dev_net(dev), addr, dev, 0);
3288 }
3289
bond_has_this_ip6(struct bonding * bond,struct in6_addr * addr)3290 static bool bond_has_this_ip6(struct bonding *bond, struct in6_addr *addr)
3291 {
3292 struct netdev_nested_priv priv = {
3293 .data = addr,
3294 };
3295 int ret = false;
3296
3297 if (bond_confirm_addr6(bond->dev, &priv))
3298 return true;
3299
3300 rcu_read_lock();
3301 if (netdev_walk_all_upper_dev_rcu(bond->dev, bond_confirm_addr6, &priv))
3302 ret = true;
3303 rcu_read_unlock();
3304
3305 return ret;
3306 }
3307
bond_validate_na(struct bonding * bond,struct slave * slave,struct in6_addr * saddr,struct in6_addr * daddr)3308 static void bond_validate_na(struct bonding *bond, struct slave *slave,
3309 struct in6_addr *saddr, struct in6_addr *daddr)
3310 {
3311 int i;
3312
3313 /* Ignore NAs that:
3314 * 1. Source address is unspecified address.
3315 * 2. Dest address is neither all-nodes multicast address nor
3316 * exist on bond interface.
3317 */
3318 if (ipv6_addr_any(saddr) ||
3319 (!ipv6_addr_equal(daddr, &in6addr_linklocal_allnodes) &&
3320 !bond_has_this_ip6(bond, daddr))) {
3321 slave_dbg(bond->dev, slave->dev, "%s: sip %pI6c tip %pI6c not found\n",
3322 __func__, saddr, daddr);
3323 return;
3324 }
3325
3326 i = bond_get_targets_ip6(bond->params.ns_targets, saddr);
3327 if (i == -1) {
3328 slave_dbg(bond->dev, slave->dev, "%s: sip %pI6c not found in targets\n",
3329 __func__, saddr);
3330 return;
3331 }
3332 slave->last_rx = jiffies;
3333 slave->target_last_arp_rx[i] = jiffies;
3334 }
3335
bond_na_rcv(const struct sk_buff * skb,struct bonding * bond,struct slave * slave)3336 static int bond_na_rcv(const struct sk_buff *skb, struct bonding *bond,
3337 struct slave *slave)
3338 {
3339 struct slave *curr_active_slave, *curr_arp_slave;
3340 struct in6_addr *saddr, *daddr;
3341 struct {
3342 struct ipv6hdr ip6;
3343 struct icmp6hdr icmp6;
3344 } *combined, _combined;
3345
3346 if (skb->pkt_type == PACKET_OTHERHOST ||
3347 skb->pkt_type == PACKET_LOOPBACK)
3348 goto out;
3349
3350 combined = skb_header_pointer(skb, 0, sizeof(_combined), &_combined);
3351 if (!combined || combined->ip6.nexthdr != NEXTHDR_ICMP ||
3352 (combined->icmp6.icmp6_type != NDISC_NEIGHBOUR_SOLICITATION &&
3353 combined->icmp6.icmp6_type != NDISC_NEIGHBOUR_ADVERTISEMENT))
3354 goto out;
3355
3356 saddr = &combined->ip6.saddr;
3357 daddr = &combined->ip6.daddr;
3358
3359 slave_dbg(bond->dev, slave->dev, "%s: %s/%d av %d sv %d sip %pI6c tip %pI6c\n",
3360 __func__, slave->dev->name, bond_slave_state(slave),
3361 bond->params.arp_validate, slave_do_arp_validate(bond, slave),
3362 saddr, daddr);
3363
3364 curr_active_slave = rcu_dereference(bond->curr_active_slave);
3365 curr_arp_slave = rcu_dereference(bond->current_arp_slave);
3366
3367 /* We 'trust' the received ARP enough to validate it if:
3368 * see bond_arp_rcv().
3369 */
3370 if (bond_is_active_slave(slave))
3371 bond_validate_na(bond, slave, saddr, daddr);
3372 else if (curr_active_slave &&
3373 time_after(slave_last_rx(bond, curr_active_slave),
3374 curr_active_slave->last_link_up))
3375 bond_validate_na(bond, slave, daddr, saddr);
3376 else if (curr_arp_slave &&
3377 bond_time_in_interval(bond, slave_last_tx(curr_arp_slave), 1))
3378 bond_validate_na(bond, slave, saddr, daddr);
3379
3380 out:
3381 return RX_HANDLER_ANOTHER;
3382 }
3383 #endif
3384
bond_rcv_validate(const struct sk_buff * skb,struct bonding * bond,struct slave * slave)3385 int bond_rcv_validate(const struct sk_buff *skb, struct bonding *bond,
3386 struct slave *slave)
3387 {
3388 #if IS_ENABLED(CONFIG_IPV6)
3389 bool is_ipv6 = skb->protocol == __cpu_to_be16(ETH_P_IPV6);
3390 #endif
3391 bool is_arp = skb->protocol == __cpu_to_be16(ETH_P_ARP);
3392
3393 slave_dbg(bond->dev, slave->dev, "%s: skb->dev %s\n",
3394 __func__, skb->dev->name);
3395
3396 /* Use arp validate logic for both ARP and NS */
3397 if (!slave_do_arp_validate(bond, slave)) {
3398 if ((slave_do_arp_validate_only(bond) && is_arp) ||
3399 #if IS_ENABLED(CONFIG_IPV6)
3400 (slave_do_arp_validate_only(bond) && is_ipv6) ||
3401 #endif
3402 !slave_do_arp_validate_only(bond))
3403 slave->last_rx = jiffies;
3404 return RX_HANDLER_ANOTHER;
3405 } else if (is_arp) {
3406 return bond_arp_rcv(skb, bond, slave);
3407 #if IS_ENABLED(CONFIG_IPV6)
3408 } else if (is_ipv6) {
3409 return bond_na_rcv(skb, bond, slave);
3410 #endif
3411 } else {
3412 return RX_HANDLER_ANOTHER;
3413 }
3414 }
3415
bond_send_validate(struct bonding * bond,struct slave * slave)3416 static void bond_send_validate(struct bonding *bond, struct slave *slave)
3417 {
3418 bond_arp_send_all(bond, slave);
3419 #if IS_ENABLED(CONFIG_IPV6)
3420 bond_ns_send_all(bond, slave);
3421 #endif
3422 }
3423
3424 /* function to verify if we're in the arp_interval timeslice, returns true if
3425 * (last_act - arp_interval) <= jiffies <= (last_act + mod * arp_interval +
3426 * arp_interval/2) . the arp_interval/2 is needed for really fast networks.
3427 */
bond_time_in_interval(struct bonding * bond,unsigned long last_act,int mod)3428 static bool bond_time_in_interval(struct bonding *bond, unsigned long last_act,
3429 int mod)
3430 {
3431 int delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
3432
3433 return time_in_range(jiffies,
3434 last_act - delta_in_ticks,
3435 last_act + mod * delta_in_ticks + delta_in_ticks/2);
3436 }
3437
3438 /* This function is called regularly to monitor each slave's link
3439 * ensuring that traffic is being sent and received when arp monitoring
3440 * is used in load-balancing mode. if the adapter has been dormant, then an
3441 * arp is transmitted to generate traffic. see activebackup_arp_monitor for
3442 * arp monitoring in active backup mode.
3443 */
bond_loadbalance_arp_mon(struct bonding * bond)3444 static void bond_loadbalance_arp_mon(struct bonding *bond)
3445 {
3446 struct slave *slave, *oldcurrent;
3447 struct list_head *iter;
3448 int do_failover = 0, slave_state_changed = 0;
3449
3450 if (!bond_has_slaves(bond))
3451 goto re_arm;
3452
3453 rcu_read_lock();
3454
3455 oldcurrent = rcu_dereference(bond->curr_active_slave);
3456 /* see if any of the previous devices are up now (i.e. they have
3457 * xmt and rcv traffic). the curr_active_slave does not come into
3458 * the picture unless it is null. also, slave->last_link_up is not
3459 * needed here because we send an arp on each slave and give a slave
3460 * as long as it needs to get the tx/rx within the delta.
3461 * TODO: what about up/down delay in arp mode? it wasn't here before
3462 * so it can wait
3463 */
3464 bond_for_each_slave_rcu(bond, slave, iter) {
3465 unsigned long last_tx = slave_last_tx(slave);
3466
3467 bond_propose_link_state(slave, BOND_LINK_NOCHANGE);
3468
3469 if (slave->link != BOND_LINK_UP) {
3470 if (bond_time_in_interval(bond, last_tx, 1) &&
3471 bond_time_in_interval(bond, slave->last_rx, 1)) {
3472
3473 bond_propose_link_state(slave, BOND_LINK_UP);
3474 slave_state_changed = 1;
3475
3476 /* primary_slave has no meaning in round-robin
3477 * mode. the window of a slave being up and
3478 * curr_active_slave being null after enslaving
3479 * is closed.
3480 */
3481 if (!oldcurrent) {
3482 slave_info(bond->dev, slave->dev, "link status definitely up\n");
3483 do_failover = 1;
3484 } else {
3485 slave_info(bond->dev, slave->dev, "interface is now up\n");
3486 }
3487 }
3488 } else {
3489 /* slave->link == BOND_LINK_UP */
3490
3491 /* not all switches will respond to an arp request
3492 * when the source ip is 0, so don't take the link down
3493 * if we don't know our ip yet
3494 */
3495 if (!bond_time_in_interval(bond, last_tx, bond->params.missed_max) ||
3496 !bond_time_in_interval(bond, slave->last_rx, bond->params.missed_max)) {
3497
3498 bond_propose_link_state(slave, BOND_LINK_DOWN);
3499 slave_state_changed = 1;
3500
3501 if (slave->link_failure_count < UINT_MAX)
3502 slave->link_failure_count++;
3503
3504 slave_info(bond->dev, slave->dev, "interface is now down\n");
3505
3506 if (slave == oldcurrent)
3507 do_failover = 1;
3508 }
3509 }
3510
3511 /* note: if switch is in round-robin mode, all links
3512 * must tx arp to ensure all links rx an arp - otherwise
3513 * links may oscillate or not come up at all; if switch is
3514 * in something like xor mode, there is nothing we can
3515 * do - all replies will be rx'ed on same link causing slaves
3516 * to be unstable during low/no traffic periods
3517 */
3518 if (bond_slave_is_up(slave))
3519 bond_send_validate(bond, slave);
3520 }
3521
3522 rcu_read_unlock();
3523
3524 if (do_failover || slave_state_changed) {
3525 if (!rtnl_trylock())
3526 goto re_arm;
3527
3528 bond_for_each_slave(bond, slave, iter) {
3529 if (slave->link_new_state != BOND_LINK_NOCHANGE)
3530 slave->link = slave->link_new_state;
3531 }
3532
3533 if (slave_state_changed) {
3534 bond_slave_state_change(bond);
3535 if (BOND_MODE(bond) == BOND_MODE_XOR)
3536 bond_update_slave_arr(bond, NULL);
3537 }
3538 if (do_failover) {
3539 block_netpoll_tx();
3540 bond_select_active_slave(bond);
3541 unblock_netpoll_tx();
3542 }
3543 rtnl_unlock();
3544 }
3545
3546 re_arm:
3547 if (bond->params.arp_interval)
3548 queue_delayed_work(bond->wq, &bond->arp_work,
3549 msecs_to_jiffies(bond->params.arp_interval));
3550 }
3551
3552 /* Called to inspect slaves for active-backup mode ARP monitor link state
3553 * changes. Sets proposed link state in slaves to specify what action
3554 * should take place for the slave. Returns 0 if no changes are found, >0
3555 * if changes to link states must be committed.
3556 *
3557 * Called with rcu_read_lock held.
3558 */
bond_ab_arp_inspect(struct bonding * bond)3559 static int bond_ab_arp_inspect(struct bonding *bond)
3560 {
3561 unsigned long last_tx, last_rx;
3562 struct list_head *iter;
3563 struct slave *slave;
3564 int commit = 0;
3565
3566 bond_for_each_slave_rcu(bond, slave, iter) {
3567 bond_propose_link_state(slave, BOND_LINK_NOCHANGE);
3568 last_rx = slave_last_rx(bond, slave);
3569
3570 if (slave->link != BOND_LINK_UP) {
3571 if (bond_time_in_interval(bond, last_rx, 1)) {
3572 bond_propose_link_state(slave, BOND_LINK_UP);
3573 commit++;
3574 } else if (slave->link == BOND_LINK_BACK) {
3575 bond_propose_link_state(slave, BOND_LINK_FAIL);
3576 commit++;
3577 }
3578 continue;
3579 }
3580
3581 /* Give slaves 2*delta after being enslaved or made
3582 * active. This avoids bouncing, as the last receive
3583 * times need a full ARP monitor cycle to be updated.
3584 */
3585 if (bond_time_in_interval(bond, slave->last_link_up, 2))
3586 continue;
3587
3588 /* Backup slave is down if:
3589 * - No current_arp_slave AND
3590 * - more than (missed_max+1)*delta since last receive AND
3591 * - the bond has an IP address
3592 *
3593 * Note: a non-null current_arp_slave indicates
3594 * the curr_active_slave went down and we are
3595 * searching for a new one; under this condition
3596 * we only take the curr_active_slave down - this
3597 * gives each slave a chance to tx/rx traffic
3598 * before being taken out
3599 */
3600 if (!bond_is_active_slave(slave) &&
3601 !rcu_access_pointer(bond->current_arp_slave) &&
3602 !bond_time_in_interval(bond, last_rx, bond->params.missed_max + 1)) {
3603 bond_propose_link_state(slave, BOND_LINK_DOWN);
3604 commit++;
3605 }
3606
3607 /* Active slave is down if:
3608 * - more than missed_max*delta since transmitting OR
3609 * - (more than missed_max*delta since receive AND
3610 * the bond has an IP address)
3611 */
3612 last_tx = slave_last_tx(slave);
3613 if (bond_is_active_slave(slave) &&
3614 (!bond_time_in_interval(bond, last_tx, bond->params.missed_max) ||
3615 !bond_time_in_interval(bond, last_rx, bond->params.missed_max))) {
3616 bond_propose_link_state(slave, BOND_LINK_DOWN);
3617 commit++;
3618 }
3619 }
3620
3621 return commit;
3622 }
3623
3624 /* Called to commit link state changes noted by inspection step of
3625 * active-backup mode ARP monitor.
3626 *
3627 * Called with RTNL hold.
3628 */
bond_ab_arp_commit(struct bonding * bond)3629 static void bond_ab_arp_commit(struct bonding *bond)
3630 {
3631 bool do_failover = false;
3632 struct list_head *iter;
3633 unsigned long last_tx;
3634 struct slave *slave;
3635
3636 bond_for_each_slave(bond, slave, iter) {
3637 switch (slave->link_new_state) {
3638 case BOND_LINK_NOCHANGE:
3639 continue;
3640
3641 case BOND_LINK_UP:
3642 last_tx = slave_last_tx(slave);
3643 if (rtnl_dereference(bond->curr_active_slave) != slave ||
3644 (!rtnl_dereference(bond->curr_active_slave) &&
3645 bond_time_in_interval(bond, last_tx, 1))) {
3646 struct slave *current_arp_slave;
3647
3648 current_arp_slave = rtnl_dereference(bond->current_arp_slave);
3649 bond_set_slave_link_state(slave, BOND_LINK_UP,
3650 BOND_SLAVE_NOTIFY_NOW);
3651 if (current_arp_slave) {
3652 bond_set_slave_inactive_flags(
3653 current_arp_slave,
3654 BOND_SLAVE_NOTIFY_NOW);
3655 RCU_INIT_POINTER(bond->current_arp_slave, NULL);
3656 }
3657
3658 slave_info(bond->dev, slave->dev, "link status definitely up\n");
3659
3660 if (!rtnl_dereference(bond->curr_active_slave) ||
3661 slave == rtnl_dereference(bond->primary_slave) ||
3662 slave->prio > rtnl_dereference(bond->curr_active_slave)->prio)
3663 do_failover = true;
3664
3665 }
3666
3667 continue;
3668
3669 case BOND_LINK_DOWN:
3670 if (slave->link_failure_count < UINT_MAX)
3671 slave->link_failure_count++;
3672
3673 bond_set_slave_link_state(slave, BOND_LINK_DOWN,
3674 BOND_SLAVE_NOTIFY_NOW);
3675 bond_set_slave_inactive_flags(slave,
3676 BOND_SLAVE_NOTIFY_NOW);
3677
3678 slave_info(bond->dev, slave->dev, "link status definitely down, disabling slave\n");
3679
3680 if (slave == rtnl_dereference(bond->curr_active_slave)) {
3681 RCU_INIT_POINTER(bond->current_arp_slave, NULL);
3682 do_failover = true;
3683 }
3684
3685 continue;
3686
3687 case BOND_LINK_FAIL:
3688 bond_set_slave_link_state(slave, BOND_LINK_FAIL,
3689 BOND_SLAVE_NOTIFY_NOW);
3690 bond_set_slave_inactive_flags(slave,
3691 BOND_SLAVE_NOTIFY_NOW);
3692
3693 /* A slave has just been enslaved and has become
3694 * the current active slave.
3695 */
3696 if (rtnl_dereference(bond->curr_active_slave))
3697 RCU_INIT_POINTER(bond->current_arp_slave, NULL);
3698 continue;
3699
3700 default:
3701 slave_err(bond->dev, slave->dev,
3702 "impossible: link_new_state %d on slave\n",
3703 slave->link_new_state);
3704 continue;
3705 }
3706 }
3707
3708 if (do_failover) {
3709 block_netpoll_tx();
3710 bond_select_active_slave(bond);
3711 unblock_netpoll_tx();
3712 }
3713
3714 bond_set_carrier(bond);
3715 }
3716
3717 /* Send ARP probes for active-backup mode ARP monitor.
3718 *
3719 * Called with rcu_read_lock held.
3720 */
bond_ab_arp_probe(struct bonding * bond)3721 static bool bond_ab_arp_probe(struct bonding *bond)
3722 {
3723 struct slave *slave, *before = NULL, *new_slave = NULL,
3724 *curr_arp_slave = rcu_dereference(bond->current_arp_slave),
3725 *curr_active_slave = rcu_dereference(bond->curr_active_slave);
3726 struct list_head *iter;
3727 bool found = false;
3728 bool should_notify_rtnl = BOND_SLAVE_NOTIFY_LATER;
3729
3730 if (curr_arp_slave && curr_active_slave)
3731 netdev_info(bond->dev, "PROBE: c_arp %s && cas %s BAD\n",
3732 curr_arp_slave->dev->name,
3733 curr_active_slave->dev->name);
3734
3735 if (curr_active_slave) {
3736 bond_send_validate(bond, curr_active_slave);
3737 return should_notify_rtnl;
3738 }
3739
3740 /* if we don't have a curr_active_slave, search for the next available
3741 * backup slave from the current_arp_slave and make it the candidate
3742 * for becoming the curr_active_slave
3743 */
3744
3745 if (!curr_arp_slave) {
3746 curr_arp_slave = bond_first_slave_rcu(bond);
3747 if (!curr_arp_slave)
3748 return should_notify_rtnl;
3749 }
3750
3751 bond_for_each_slave_rcu(bond, slave, iter) {
3752 if (!found && !before && bond_slave_is_up(slave))
3753 before = slave;
3754
3755 if (found && !new_slave && bond_slave_is_up(slave))
3756 new_slave = slave;
3757 /* if the link state is up at this point, we
3758 * mark it down - this can happen if we have
3759 * simultaneous link failures and
3760 * reselect_active_interface doesn't make this
3761 * one the current slave so it is still marked
3762 * up when it is actually down
3763 */
3764 if (!bond_slave_is_up(slave) && slave->link == BOND_LINK_UP) {
3765 bond_set_slave_link_state(slave, BOND_LINK_DOWN,
3766 BOND_SLAVE_NOTIFY_LATER);
3767 if (slave->link_failure_count < UINT_MAX)
3768 slave->link_failure_count++;
3769
3770 bond_set_slave_inactive_flags(slave,
3771 BOND_SLAVE_NOTIFY_LATER);
3772
3773 slave_info(bond->dev, slave->dev, "backup interface is now down\n");
3774 }
3775 if (slave == curr_arp_slave)
3776 found = true;
3777 }
3778
3779 if (!new_slave && before)
3780 new_slave = before;
3781
3782 if (!new_slave)
3783 goto check_state;
3784
3785 bond_set_slave_link_state(new_slave, BOND_LINK_BACK,
3786 BOND_SLAVE_NOTIFY_LATER);
3787 bond_set_slave_active_flags(new_slave, BOND_SLAVE_NOTIFY_LATER);
3788 bond_send_validate(bond, new_slave);
3789 new_slave->last_link_up = jiffies;
3790 rcu_assign_pointer(bond->current_arp_slave, new_slave);
3791
3792 check_state:
3793 bond_for_each_slave_rcu(bond, slave, iter) {
3794 if (slave->should_notify || slave->should_notify_link) {
3795 should_notify_rtnl = BOND_SLAVE_NOTIFY_NOW;
3796 break;
3797 }
3798 }
3799 return should_notify_rtnl;
3800 }
3801
bond_activebackup_arp_mon(struct bonding * bond)3802 static void bond_activebackup_arp_mon(struct bonding *bond)
3803 {
3804 bool should_notify_peers = false;
3805 bool should_notify_rtnl = false;
3806 int delta_in_ticks;
3807
3808 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
3809
3810 if (!bond_has_slaves(bond))
3811 goto re_arm;
3812
3813 rcu_read_lock();
3814
3815 should_notify_peers = bond_should_notify_peers(bond);
3816
3817 if (bond_ab_arp_inspect(bond)) {
3818 rcu_read_unlock();
3819
3820 /* Race avoidance with bond_close flush of workqueue */
3821 if (!rtnl_trylock()) {
3822 delta_in_ticks = 1;
3823 should_notify_peers = false;
3824 goto re_arm;
3825 }
3826
3827 bond_ab_arp_commit(bond);
3828
3829 rtnl_unlock();
3830 rcu_read_lock();
3831 }
3832
3833 should_notify_rtnl = bond_ab_arp_probe(bond);
3834 rcu_read_unlock();
3835
3836 re_arm:
3837 if (bond->params.arp_interval)
3838 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
3839
3840 if (should_notify_peers || should_notify_rtnl) {
3841 if (!rtnl_trylock())
3842 return;
3843
3844 if (should_notify_peers) {
3845 bond->send_peer_notif--;
3846 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS,
3847 bond->dev);
3848 }
3849 if (should_notify_rtnl) {
3850 bond_slave_state_notify(bond);
3851 bond_slave_link_notify(bond);
3852 }
3853
3854 rtnl_unlock();
3855 }
3856 }
3857
bond_arp_monitor(struct work_struct * work)3858 static void bond_arp_monitor(struct work_struct *work)
3859 {
3860 struct bonding *bond = container_of(work, struct bonding,
3861 arp_work.work);
3862
3863 if (BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP)
3864 bond_activebackup_arp_mon(bond);
3865 else
3866 bond_loadbalance_arp_mon(bond);
3867 }
3868
3869 /*-------------------------- netdev event handling --------------------------*/
3870
3871 /* Change device name */
bond_event_changename(struct bonding * bond)3872 static int bond_event_changename(struct bonding *bond)
3873 {
3874 bond_remove_proc_entry(bond);
3875 bond_create_proc_entry(bond);
3876
3877 bond_debug_reregister(bond);
3878
3879 return NOTIFY_DONE;
3880 }
3881
bond_master_netdev_event(unsigned long event,struct net_device * bond_dev)3882 static int bond_master_netdev_event(unsigned long event,
3883 struct net_device *bond_dev)
3884 {
3885 struct bonding *event_bond = netdev_priv(bond_dev);
3886
3887 netdev_dbg(bond_dev, "%s called\n", __func__);
3888
3889 switch (event) {
3890 case NETDEV_CHANGENAME:
3891 return bond_event_changename(event_bond);
3892 case NETDEV_UNREGISTER:
3893 bond_remove_proc_entry(event_bond);
3894 #ifdef CONFIG_XFRM_OFFLOAD
3895 xfrm_dev_state_flush(dev_net(bond_dev), bond_dev, true);
3896 #endif /* CONFIG_XFRM_OFFLOAD */
3897 break;
3898 case NETDEV_REGISTER:
3899 bond_create_proc_entry(event_bond);
3900 break;
3901 default:
3902 break;
3903 }
3904
3905 return NOTIFY_DONE;
3906 }
3907
bond_slave_netdev_event(unsigned long event,struct net_device * slave_dev)3908 static int bond_slave_netdev_event(unsigned long event,
3909 struct net_device *slave_dev)
3910 {
3911 struct slave *slave = bond_slave_get_rtnl(slave_dev), *primary;
3912 struct bonding *bond;
3913 struct net_device *bond_dev;
3914
3915 /* A netdev event can be generated while enslaving a device
3916 * before netdev_rx_handler_register is called in which case
3917 * slave will be NULL
3918 */
3919 if (!slave) {
3920 netdev_dbg(slave_dev, "%s called on NULL slave\n", __func__);
3921 return NOTIFY_DONE;
3922 }
3923
3924 bond_dev = slave->bond->dev;
3925 bond = slave->bond;
3926 primary = rtnl_dereference(bond->primary_slave);
3927
3928 slave_dbg(bond_dev, slave_dev, "%s called\n", __func__);
3929
3930 switch (event) {
3931 case NETDEV_UNREGISTER:
3932 if (bond_dev->type != ARPHRD_ETHER)
3933 bond_release_and_destroy(bond_dev, slave_dev);
3934 else
3935 __bond_release_one(bond_dev, slave_dev, false, true);
3936 break;
3937 case NETDEV_UP:
3938 case NETDEV_CHANGE:
3939 /* For 802.3ad mode only:
3940 * Getting invalid Speed/Duplex values here will put slave
3941 * in weird state. Mark it as link-fail if the link was
3942 * previously up or link-down if it hasn't yet come up, and
3943 * let link-monitoring (miimon) set it right when correct
3944 * speeds/duplex are available.
3945 */
3946 if (bond_update_speed_duplex(slave) &&
3947 BOND_MODE(bond) == BOND_MODE_8023AD) {
3948 if (slave->last_link_up)
3949 slave->link = BOND_LINK_FAIL;
3950 else
3951 slave->link = BOND_LINK_DOWN;
3952 }
3953
3954 if (BOND_MODE(bond) == BOND_MODE_8023AD)
3955 bond_3ad_adapter_speed_duplex_changed(slave);
3956 fallthrough;
3957 case NETDEV_DOWN:
3958 /* Refresh slave-array if applicable!
3959 * If the setup does not use miimon or arpmon (mode-specific!),
3960 * then these events will not cause the slave-array to be
3961 * refreshed. This will cause xmit to use a slave that is not
3962 * usable. Avoid such situation by refeshing the array at these
3963 * events. If these (miimon/arpmon) parameters are configured
3964 * then array gets refreshed twice and that should be fine!
3965 */
3966 if (bond_mode_can_use_xmit_hash(bond))
3967 bond_update_slave_arr(bond, NULL);
3968 break;
3969 case NETDEV_CHANGEMTU:
3970 /* TODO: Should slaves be allowed to
3971 * independently alter their MTU? For
3972 * an active-backup bond, slaves need
3973 * not be the same type of device, so
3974 * MTUs may vary. For other modes,
3975 * slaves arguably should have the
3976 * same MTUs. To do this, we'd need to
3977 * take over the slave's change_mtu
3978 * function for the duration of their
3979 * servitude.
3980 */
3981 break;
3982 case NETDEV_CHANGENAME:
3983 /* we don't care if we don't have primary set */
3984 if (!bond_uses_primary(bond) ||
3985 !bond->params.primary[0])
3986 break;
3987
3988 if (slave == primary) {
3989 /* slave's name changed - he's no longer primary */
3990 RCU_INIT_POINTER(bond->primary_slave, NULL);
3991 } else if (!strcmp(slave_dev->name, bond->params.primary)) {
3992 /* we have a new primary slave */
3993 rcu_assign_pointer(bond->primary_slave, slave);
3994 } else { /* we didn't change primary - exit */
3995 break;
3996 }
3997
3998 netdev_info(bond->dev, "Primary slave changed to %s, reselecting active slave\n",
3999 primary ? slave_dev->name : "none");
4000
4001 block_netpoll_tx();
4002 bond_select_active_slave(bond);
4003 unblock_netpoll_tx();
4004 break;
4005 case NETDEV_FEAT_CHANGE:
4006 if (!bond->notifier_ctx) {
4007 bond->notifier_ctx = true;
4008 bond_compute_features(bond);
4009 bond->notifier_ctx = false;
4010 }
4011 break;
4012 case NETDEV_RESEND_IGMP:
4013 /* Propagate to master device */
4014 call_netdevice_notifiers(event, slave->bond->dev);
4015 break;
4016 case NETDEV_XDP_FEAT_CHANGE:
4017 bond_xdp_set_features(bond_dev);
4018 break;
4019 default:
4020 break;
4021 }
4022
4023 return NOTIFY_DONE;
4024 }
4025
4026 /* bond_netdev_event: handle netdev notifier chain events.
4027 *
4028 * This function receives events for the netdev chain. The caller (an
4029 * ioctl handler calling blocking_notifier_call_chain) holds the necessary
4030 * locks for us to safely manipulate the slave devices (RTNL lock,
4031 * dev_probe_lock).
4032 */
bond_netdev_event(struct notifier_block * this,unsigned long event,void * ptr)4033 static int bond_netdev_event(struct notifier_block *this,
4034 unsigned long event, void *ptr)
4035 {
4036 struct net_device *event_dev = netdev_notifier_info_to_dev(ptr);
4037
4038 netdev_dbg(event_dev, "%s received %s\n",
4039 __func__, netdev_cmd_to_name(event));
4040
4041 if (!(event_dev->priv_flags & IFF_BONDING))
4042 return NOTIFY_DONE;
4043
4044 if (event_dev->flags & IFF_MASTER) {
4045 int ret;
4046
4047 ret = bond_master_netdev_event(event, event_dev);
4048 if (ret != NOTIFY_DONE)
4049 return ret;
4050 }
4051
4052 if (event_dev->flags & IFF_SLAVE)
4053 return bond_slave_netdev_event(event, event_dev);
4054
4055 return NOTIFY_DONE;
4056 }
4057
4058 static struct notifier_block bond_netdev_notifier = {
4059 .notifier_call = bond_netdev_event,
4060 };
4061
4062 /*---------------------------- Hashing Policies -----------------------------*/
4063
4064 /* Helper to access data in a packet, with or without a backing skb.
4065 * If skb is given the data is linearized if necessary via pskb_may_pull.
4066 */
bond_pull_data(struct sk_buff * skb,const void * data,int hlen,int n)4067 static inline const void *bond_pull_data(struct sk_buff *skb,
4068 const void *data, int hlen, int n)
4069 {
4070 if (likely(n <= hlen))
4071 return data;
4072 else if (skb && likely(pskb_may_pull(skb, n)))
4073 return skb->data;
4074
4075 return NULL;
4076 }
4077
4078 /* L2 hash helper */
bond_eth_hash(struct sk_buff * skb,const void * data,int mhoff,int hlen)4079 static inline u32 bond_eth_hash(struct sk_buff *skb, const void *data, int mhoff, int hlen)
4080 {
4081 struct ethhdr *ep;
4082
4083 data = bond_pull_data(skb, data, hlen, mhoff + sizeof(struct ethhdr));
4084 if (!data)
4085 return 0;
4086
4087 ep = (struct ethhdr *)(data + mhoff);
4088 return ep->h_dest[5] ^ ep->h_source[5] ^ be16_to_cpu(ep->h_proto);
4089 }
4090
bond_flow_ip(struct sk_buff * skb,struct flow_keys * fk,const void * data,int hlen,__be16 l2_proto,int * nhoff,int * ip_proto,bool l34)4091 static bool bond_flow_ip(struct sk_buff *skb, struct flow_keys *fk, const void *data,
4092 int hlen, __be16 l2_proto, int *nhoff, int *ip_proto, bool l34)
4093 {
4094 const struct ipv6hdr *iph6;
4095 const struct iphdr *iph;
4096
4097 if (l2_proto == htons(ETH_P_IP)) {
4098 data = bond_pull_data(skb, data, hlen, *nhoff + sizeof(*iph));
4099 if (!data)
4100 return false;
4101
4102 iph = (const struct iphdr *)(data + *nhoff);
4103 iph_to_flow_copy_v4addrs(fk, iph);
4104 *nhoff += iph->ihl << 2;
4105 if (!ip_is_fragment(iph))
4106 *ip_proto = iph->protocol;
4107 } else if (l2_proto == htons(ETH_P_IPV6)) {
4108 data = bond_pull_data(skb, data, hlen, *nhoff + sizeof(*iph6));
4109 if (!data)
4110 return false;
4111
4112 iph6 = (const struct ipv6hdr *)(data + *nhoff);
4113 iph_to_flow_copy_v6addrs(fk, iph6);
4114 *nhoff += sizeof(*iph6);
4115 *ip_proto = iph6->nexthdr;
4116 } else {
4117 return false;
4118 }
4119
4120 if (l34 && *ip_proto >= 0)
4121 fk->ports.ports = __skb_flow_get_ports(skb, *nhoff, *ip_proto, data, hlen);
4122
4123 return true;
4124 }
4125
bond_vlan_srcmac_hash(struct sk_buff * skb,const void * data,int mhoff,int hlen)4126 static u32 bond_vlan_srcmac_hash(struct sk_buff *skb, const void *data, int mhoff, int hlen)
4127 {
4128 u32 srcmac_vendor = 0, srcmac_dev = 0;
4129 struct ethhdr *mac_hdr;
4130 u16 vlan = 0;
4131 int i;
4132
4133 data = bond_pull_data(skb, data, hlen, mhoff + sizeof(struct ethhdr));
4134 if (!data)
4135 return 0;
4136 mac_hdr = (struct ethhdr *)(data + mhoff);
4137
4138 for (i = 0; i < 3; i++)
4139 srcmac_vendor = (srcmac_vendor << 8) | mac_hdr->h_source[i];
4140
4141 for (i = 3; i < ETH_ALEN; i++)
4142 srcmac_dev = (srcmac_dev << 8) | mac_hdr->h_source[i];
4143
4144 if (skb && skb_vlan_tag_present(skb))
4145 vlan = skb_vlan_tag_get(skb);
4146
4147 return vlan ^ srcmac_vendor ^ srcmac_dev;
4148 }
4149
4150 /* Extract the appropriate headers based on bond's xmit policy */
bond_flow_dissect(struct bonding * bond,struct sk_buff * skb,const void * data,__be16 l2_proto,int nhoff,int hlen,struct flow_keys * fk)4151 static bool bond_flow_dissect(struct bonding *bond, struct sk_buff *skb, const void *data,
4152 __be16 l2_proto, int nhoff, int hlen, struct flow_keys *fk)
4153 {
4154 bool l34 = bond->params.xmit_policy == BOND_XMIT_POLICY_LAYER34;
4155 int ip_proto = -1;
4156
4157 switch (bond->params.xmit_policy) {
4158 case BOND_XMIT_POLICY_ENCAP23:
4159 case BOND_XMIT_POLICY_ENCAP34:
4160 memset(fk, 0, sizeof(*fk));
4161 return __skb_flow_dissect(NULL, skb, &flow_keys_bonding,
4162 fk, data, l2_proto, nhoff, hlen, 0);
4163 default:
4164 break;
4165 }
4166
4167 fk->ports.ports = 0;
4168 memset(&fk->icmp, 0, sizeof(fk->icmp));
4169 if (!bond_flow_ip(skb, fk, data, hlen, l2_proto, &nhoff, &ip_proto, l34))
4170 return false;
4171
4172 /* ICMP error packets contains at least 8 bytes of the header
4173 * of the packet which generated the error. Use this information
4174 * to correlate ICMP error packets within the same flow which
4175 * generated the error.
4176 */
4177 if (ip_proto == IPPROTO_ICMP || ip_proto == IPPROTO_ICMPV6) {
4178 skb_flow_get_icmp_tci(skb, &fk->icmp, data, nhoff, hlen);
4179 if (ip_proto == IPPROTO_ICMP) {
4180 if (!icmp_is_err(fk->icmp.type))
4181 return true;
4182
4183 nhoff += sizeof(struct icmphdr);
4184 } else if (ip_proto == IPPROTO_ICMPV6) {
4185 if (!icmpv6_is_err(fk->icmp.type))
4186 return true;
4187
4188 nhoff += sizeof(struct icmp6hdr);
4189 }
4190 return bond_flow_ip(skb, fk, data, hlen, l2_proto, &nhoff, &ip_proto, l34);
4191 }
4192
4193 return true;
4194 }
4195
bond_ip_hash(u32 hash,struct flow_keys * flow,int xmit_policy)4196 static u32 bond_ip_hash(u32 hash, struct flow_keys *flow, int xmit_policy)
4197 {
4198 hash ^= (__force u32)flow_get_u32_dst(flow) ^
4199 (__force u32)flow_get_u32_src(flow);
4200 hash ^= (hash >> 16);
4201 hash ^= (hash >> 8);
4202
4203 /* discard lowest hash bit to deal with the common even ports pattern */
4204 if (xmit_policy == BOND_XMIT_POLICY_LAYER34 ||
4205 xmit_policy == BOND_XMIT_POLICY_ENCAP34)
4206 return hash >> 1;
4207
4208 return hash;
4209 }
4210
4211 /* Generate hash based on xmit policy. If @skb is given it is used to linearize
4212 * the data as required, but this function can be used without it if the data is
4213 * known to be linear (e.g. with xdp_buff).
4214 */
__bond_xmit_hash(struct bonding * bond,struct sk_buff * skb,const void * data,__be16 l2_proto,int mhoff,int nhoff,int hlen)4215 static u32 __bond_xmit_hash(struct bonding *bond, struct sk_buff *skb, const void *data,
4216 __be16 l2_proto, int mhoff, int nhoff, int hlen)
4217 {
4218 struct flow_keys flow;
4219 u32 hash;
4220
4221 if (bond->params.xmit_policy == BOND_XMIT_POLICY_VLAN_SRCMAC)
4222 return bond_vlan_srcmac_hash(skb, data, mhoff, hlen);
4223
4224 if (bond->params.xmit_policy == BOND_XMIT_POLICY_LAYER2 ||
4225 !bond_flow_dissect(bond, skb, data, l2_proto, nhoff, hlen, &flow))
4226 return bond_eth_hash(skb, data, mhoff, hlen);
4227
4228 if (bond->params.xmit_policy == BOND_XMIT_POLICY_LAYER23 ||
4229 bond->params.xmit_policy == BOND_XMIT_POLICY_ENCAP23) {
4230 hash = bond_eth_hash(skb, data, mhoff, hlen);
4231 } else {
4232 if (flow.icmp.id)
4233 memcpy(&hash, &flow.icmp, sizeof(hash));
4234 else
4235 memcpy(&hash, &flow.ports.ports, sizeof(hash));
4236 }
4237
4238 return bond_ip_hash(hash, &flow, bond->params.xmit_policy);
4239 }
4240
4241 /**
4242 * bond_xmit_hash - generate a hash value based on the xmit policy
4243 * @bond: bonding device
4244 * @skb: buffer to use for headers
4245 *
4246 * This function will extract the necessary headers from the skb buffer and use
4247 * them to generate a hash based on the xmit_policy set in the bonding device
4248 */
bond_xmit_hash(struct bonding * bond,struct sk_buff * skb)4249 u32 bond_xmit_hash(struct bonding *bond, struct sk_buff *skb)
4250 {
4251 if (bond->params.xmit_policy == BOND_XMIT_POLICY_ENCAP34 &&
4252 skb->l4_hash)
4253 return skb->hash;
4254
4255 return __bond_xmit_hash(bond, skb, skb->data, skb->protocol,
4256 0, skb_network_offset(skb),
4257 skb_headlen(skb));
4258 }
4259
4260 /**
4261 * bond_xmit_hash_xdp - generate a hash value based on the xmit policy
4262 * @bond: bonding device
4263 * @xdp: buffer to use for headers
4264 *
4265 * The XDP variant of bond_xmit_hash.
4266 */
bond_xmit_hash_xdp(struct bonding * bond,struct xdp_buff * xdp)4267 static u32 bond_xmit_hash_xdp(struct bonding *bond, struct xdp_buff *xdp)
4268 {
4269 struct ethhdr *eth;
4270
4271 if (xdp->data + sizeof(struct ethhdr) > xdp->data_end)
4272 return 0;
4273
4274 eth = (struct ethhdr *)xdp->data;
4275
4276 return __bond_xmit_hash(bond, NULL, xdp->data, eth->h_proto, 0,
4277 sizeof(struct ethhdr), xdp->data_end - xdp->data);
4278 }
4279
4280 /*-------------------------- Device entry points ----------------------------*/
4281
bond_work_init_all(struct bonding * bond)4282 void bond_work_init_all(struct bonding *bond)
4283 {
4284 INIT_DELAYED_WORK(&bond->mcast_work,
4285 bond_resend_igmp_join_requests_delayed);
4286 INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor);
4287 INIT_DELAYED_WORK(&bond->mii_work, bond_mii_monitor);
4288 INIT_DELAYED_WORK(&bond->arp_work, bond_arp_monitor);
4289 INIT_DELAYED_WORK(&bond->ad_work, bond_3ad_state_machine_handler);
4290 INIT_DELAYED_WORK(&bond->slave_arr_work, bond_slave_arr_handler);
4291 }
4292
bond_work_cancel_all(struct bonding * bond)4293 static void bond_work_cancel_all(struct bonding *bond)
4294 {
4295 cancel_delayed_work_sync(&bond->mii_work);
4296 cancel_delayed_work_sync(&bond->arp_work);
4297 cancel_delayed_work_sync(&bond->alb_work);
4298 cancel_delayed_work_sync(&bond->ad_work);
4299 cancel_delayed_work_sync(&bond->mcast_work);
4300 cancel_delayed_work_sync(&bond->slave_arr_work);
4301 }
4302
bond_open(struct net_device * bond_dev)4303 static int bond_open(struct net_device *bond_dev)
4304 {
4305 struct bonding *bond = netdev_priv(bond_dev);
4306 struct list_head *iter;
4307 struct slave *slave;
4308
4309 if (BOND_MODE(bond) == BOND_MODE_ROUNDROBIN && !bond->rr_tx_counter) {
4310 bond->rr_tx_counter = alloc_percpu(u32);
4311 if (!bond->rr_tx_counter)
4312 return -ENOMEM;
4313 }
4314
4315 /* reset slave->backup and slave->inactive */
4316 if (bond_has_slaves(bond)) {
4317 bond_for_each_slave(bond, slave, iter) {
4318 if (bond_uses_primary(bond) &&
4319 slave != rcu_access_pointer(bond->curr_active_slave)) {
4320 bond_set_slave_inactive_flags(slave,
4321 BOND_SLAVE_NOTIFY_NOW);
4322 } else if (BOND_MODE(bond) != BOND_MODE_8023AD) {
4323 bond_set_slave_active_flags(slave,
4324 BOND_SLAVE_NOTIFY_NOW);
4325 }
4326 }
4327 }
4328
4329 if (bond_is_lb(bond)) {
4330 /* bond_alb_initialize must be called before the timer
4331 * is started.
4332 */
4333 if (bond_alb_initialize(bond, (BOND_MODE(bond) == BOND_MODE_ALB)))
4334 return -ENOMEM;
4335 if (bond->params.tlb_dynamic_lb || BOND_MODE(bond) == BOND_MODE_ALB)
4336 queue_delayed_work(bond->wq, &bond->alb_work, 0);
4337 }
4338
4339 if (bond->params.miimon) /* link check interval, in milliseconds. */
4340 queue_delayed_work(bond->wq, &bond->mii_work, 0);
4341
4342 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
4343 queue_delayed_work(bond->wq, &bond->arp_work, 0);
4344 bond->recv_probe = bond_rcv_validate;
4345 }
4346
4347 if (BOND_MODE(bond) == BOND_MODE_8023AD) {
4348 queue_delayed_work(bond->wq, &bond->ad_work, 0);
4349 /* register to receive LACPDUs */
4350 bond->recv_probe = bond_3ad_lacpdu_recv;
4351 bond_3ad_initiate_agg_selection(bond, 1);
4352
4353 bond_for_each_slave(bond, slave, iter)
4354 dev_mc_add(slave->dev, lacpdu_mcast_addr);
4355 }
4356
4357 if (bond_mode_can_use_xmit_hash(bond))
4358 bond_update_slave_arr(bond, NULL);
4359
4360 return 0;
4361 }
4362
bond_close(struct net_device * bond_dev)4363 static int bond_close(struct net_device *bond_dev)
4364 {
4365 struct bonding *bond = netdev_priv(bond_dev);
4366 struct slave *slave;
4367
4368 bond_work_cancel_all(bond);
4369 bond->send_peer_notif = 0;
4370 if (bond_is_lb(bond))
4371 bond_alb_deinitialize(bond);
4372 bond->recv_probe = NULL;
4373
4374 if (bond_uses_primary(bond)) {
4375 rcu_read_lock();
4376 slave = rcu_dereference(bond->curr_active_slave);
4377 if (slave)
4378 bond_hw_addr_flush(bond_dev, slave->dev);
4379 rcu_read_unlock();
4380 } else {
4381 struct list_head *iter;
4382
4383 bond_for_each_slave(bond, slave, iter)
4384 bond_hw_addr_flush(bond_dev, slave->dev);
4385 }
4386
4387 return 0;
4388 }
4389
4390 /* fold stats, assuming all rtnl_link_stats64 fields are u64, but
4391 * that some drivers can provide 32bit values only.
4392 */
bond_fold_stats(struct rtnl_link_stats64 * _res,const struct rtnl_link_stats64 * _new,const struct rtnl_link_stats64 * _old)4393 static void bond_fold_stats(struct rtnl_link_stats64 *_res,
4394 const struct rtnl_link_stats64 *_new,
4395 const struct rtnl_link_stats64 *_old)
4396 {
4397 const u64 *new = (const u64 *)_new;
4398 const u64 *old = (const u64 *)_old;
4399 u64 *res = (u64 *)_res;
4400 int i;
4401
4402 for (i = 0; i < sizeof(*_res) / sizeof(u64); i++) {
4403 u64 nv = new[i];
4404 u64 ov = old[i];
4405 s64 delta = nv - ov;
4406
4407 /* detects if this particular field is 32bit only */
4408 if (((nv | ov) >> 32) == 0)
4409 delta = (s64)(s32)((u32)nv - (u32)ov);
4410
4411 /* filter anomalies, some drivers reset their stats
4412 * at down/up events.
4413 */
4414 if (delta > 0)
4415 res[i] += delta;
4416 }
4417 }
4418
4419 #ifdef CONFIG_LOCKDEP
bond_get_lowest_level_rcu(struct net_device * dev)4420 static int bond_get_lowest_level_rcu(struct net_device *dev)
4421 {
4422 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
4423 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
4424 int cur = 0, max = 0;
4425
4426 now = dev;
4427 iter = &dev->adj_list.lower;
4428
4429 while (1) {
4430 next = NULL;
4431 while (1) {
4432 ldev = netdev_next_lower_dev_rcu(now, &iter);
4433 if (!ldev)
4434 break;
4435
4436 next = ldev;
4437 niter = &ldev->adj_list.lower;
4438 dev_stack[cur] = now;
4439 iter_stack[cur++] = iter;
4440 if (max <= cur)
4441 max = cur;
4442 break;
4443 }
4444
4445 if (!next) {
4446 if (!cur)
4447 return max;
4448 next = dev_stack[--cur];
4449 niter = iter_stack[cur];
4450 }
4451
4452 now = next;
4453 iter = niter;
4454 }
4455
4456 return max;
4457 }
4458 #endif
4459
bond_get_stats(struct net_device * bond_dev,struct rtnl_link_stats64 * stats)4460 static void bond_get_stats(struct net_device *bond_dev,
4461 struct rtnl_link_stats64 *stats)
4462 {
4463 struct bonding *bond = netdev_priv(bond_dev);
4464 struct rtnl_link_stats64 temp;
4465 struct list_head *iter;
4466 struct slave *slave;
4467 int nest_level = 0;
4468
4469
4470 rcu_read_lock();
4471 #ifdef CONFIG_LOCKDEP
4472 nest_level = bond_get_lowest_level_rcu(bond_dev);
4473 #endif
4474
4475 spin_lock_nested(&bond->stats_lock, nest_level);
4476 memcpy(stats, &bond->bond_stats, sizeof(*stats));
4477
4478 bond_for_each_slave_rcu(bond, slave, iter) {
4479 const struct rtnl_link_stats64 *new =
4480 dev_get_stats(slave->dev, &temp);
4481
4482 bond_fold_stats(stats, new, &slave->slave_stats);
4483
4484 /* save off the slave stats for the next run */
4485 memcpy(&slave->slave_stats, new, sizeof(*new));
4486 }
4487
4488 memcpy(&bond->bond_stats, stats, sizeof(*stats));
4489 spin_unlock(&bond->stats_lock);
4490 rcu_read_unlock();
4491 }
4492
bond_eth_ioctl(struct net_device * bond_dev,struct ifreq * ifr,int cmd)4493 static int bond_eth_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd)
4494 {
4495 struct bonding *bond = netdev_priv(bond_dev);
4496 struct mii_ioctl_data *mii = NULL;
4497
4498 netdev_dbg(bond_dev, "bond_eth_ioctl: cmd=%d\n", cmd);
4499
4500 switch (cmd) {
4501 case SIOCGMIIPHY:
4502 mii = if_mii(ifr);
4503 if (!mii)
4504 return -EINVAL;
4505
4506 mii->phy_id = 0;
4507 fallthrough;
4508 case SIOCGMIIREG:
4509 /* We do this again just in case we were called by SIOCGMIIREG
4510 * instead of SIOCGMIIPHY.
4511 */
4512 mii = if_mii(ifr);
4513 if (!mii)
4514 return -EINVAL;
4515
4516 if (mii->reg_num == 1) {
4517 mii->val_out = 0;
4518 if (netif_carrier_ok(bond->dev))
4519 mii->val_out = BMSR_LSTATUS;
4520 }
4521
4522 break;
4523 default:
4524 return -EOPNOTSUPP;
4525 }
4526
4527 return 0;
4528 }
4529
bond_do_ioctl(struct net_device * bond_dev,struct ifreq * ifr,int cmd)4530 static int bond_do_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd)
4531 {
4532 struct bonding *bond = netdev_priv(bond_dev);
4533 struct net_device *slave_dev = NULL;
4534 struct ifbond k_binfo;
4535 struct ifbond __user *u_binfo = NULL;
4536 struct ifslave k_sinfo;
4537 struct ifslave __user *u_sinfo = NULL;
4538 struct bond_opt_value newval;
4539 struct net *net;
4540 int res = 0;
4541
4542 netdev_dbg(bond_dev, "bond_ioctl: cmd=%d\n", cmd);
4543
4544 switch (cmd) {
4545 case SIOCBONDINFOQUERY:
4546 u_binfo = (struct ifbond __user *)ifr->ifr_data;
4547
4548 if (copy_from_user(&k_binfo, u_binfo, sizeof(ifbond)))
4549 return -EFAULT;
4550
4551 bond_info_query(bond_dev, &k_binfo);
4552 if (copy_to_user(u_binfo, &k_binfo, sizeof(ifbond)))
4553 return -EFAULT;
4554
4555 return 0;
4556 case SIOCBONDSLAVEINFOQUERY:
4557 u_sinfo = (struct ifslave __user *)ifr->ifr_data;
4558
4559 if (copy_from_user(&k_sinfo, u_sinfo, sizeof(ifslave)))
4560 return -EFAULT;
4561
4562 res = bond_slave_info_query(bond_dev, &k_sinfo);
4563 if (res == 0 &&
4564 copy_to_user(u_sinfo, &k_sinfo, sizeof(ifslave)))
4565 return -EFAULT;
4566
4567 return res;
4568 default:
4569 break;
4570 }
4571
4572 net = dev_net(bond_dev);
4573
4574 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
4575 return -EPERM;
4576
4577 slave_dev = __dev_get_by_name(net, ifr->ifr_slave);
4578
4579 slave_dbg(bond_dev, slave_dev, "slave_dev=%p:\n", slave_dev);
4580
4581 if (!slave_dev)
4582 return -ENODEV;
4583
4584 switch (cmd) {
4585 case SIOCBONDENSLAVE:
4586 res = bond_enslave(bond_dev, slave_dev, NULL);
4587 break;
4588 case SIOCBONDRELEASE:
4589 res = bond_release(bond_dev, slave_dev);
4590 break;
4591 case SIOCBONDSETHWADDR:
4592 res = bond_set_dev_addr(bond_dev, slave_dev);
4593 break;
4594 case SIOCBONDCHANGEACTIVE:
4595 bond_opt_initstr(&newval, slave_dev->name);
4596 res = __bond_opt_set_notify(bond, BOND_OPT_ACTIVE_SLAVE,
4597 &newval);
4598 break;
4599 default:
4600 res = -EOPNOTSUPP;
4601 }
4602
4603 return res;
4604 }
4605
bond_siocdevprivate(struct net_device * bond_dev,struct ifreq * ifr,void __user * data,int cmd)4606 static int bond_siocdevprivate(struct net_device *bond_dev, struct ifreq *ifr,
4607 void __user *data, int cmd)
4608 {
4609 struct ifreq ifrdata = { .ifr_data = data };
4610
4611 switch (cmd) {
4612 case BOND_INFO_QUERY_OLD:
4613 return bond_do_ioctl(bond_dev, &ifrdata, SIOCBONDINFOQUERY);
4614 case BOND_SLAVE_INFO_QUERY_OLD:
4615 return bond_do_ioctl(bond_dev, &ifrdata, SIOCBONDSLAVEINFOQUERY);
4616 case BOND_ENSLAVE_OLD:
4617 return bond_do_ioctl(bond_dev, ifr, SIOCBONDENSLAVE);
4618 case BOND_RELEASE_OLD:
4619 return bond_do_ioctl(bond_dev, ifr, SIOCBONDRELEASE);
4620 case BOND_SETHWADDR_OLD:
4621 return bond_do_ioctl(bond_dev, ifr, SIOCBONDSETHWADDR);
4622 case BOND_CHANGE_ACTIVE_OLD:
4623 return bond_do_ioctl(bond_dev, ifr, SIOCBONDCHANGEACTIVE);
4624 }
4625
4626 return -EOPNOTSUPP;
4627 }
4628
bond_change_rx_flags(struct net_device * bond_dev,int change)4629 static void bond_change_rx_flags(struct net_device *bond_dev, int change)
4630 {
4631 struct bonding *bond = netdev_priv(bond_dev);
4632
4633 if (change & IFF_PROMISC)
4634 bond_set_promiscuity(bond,
4635 bond_dev->flags & IFF_PROMISC ? 1 : -1);
4636
4637 if (change & IFF_ALLMULTI)
4638 bond_set_allmulti(bond,
4639 bond_dev->flags & IFF_ALLMULTI ? 1 : -1);
4640 }
4641
bond_set_rx_mode(struct net_device * bond_dev)4642 static void bond_set_rx_mode(struct net_device *bond_dev)
4643 {
4644 struct bonding *bond = netdev_priv(bond_dev);
4645 struct list_head *iter;
4646 struct slave *slave;
4647
4648 rcu_read_lock();
4649 if (bond_uses_primary(bond)) {
4650 slave = rcu_dereference(bond->curr_active_slave);
4651 if (slave) {
4652 dev_uc_sync(slave->dev, bond_dev);
4653 dev_mc_sync(slave->dev, bond_dev);
4654 }
4655 } else {
4656 bond_for_each_slave_rcu(bond, slave, iter) {
4657 dev_uc_sync_multiple(slave->dev, bond_dev);
4658 dev_mc_sync_multiple(slave->dev, bond_dev);
4659 }
4660 }
4661 rcu_read_unlock();
4662 }
4663
bond_neigh_init(struct neighbour * n)4664 static int bond_neigh_init(struct neighbour *n)
4665 {
4666 struct bonding *bond = netdev_priv(n->dev);
4667 const struct net_device_ops *slave_ops;
4668 struct neigh_parms parms;
4669 struct slave *slave;
4670 int ret = 0;
4671
4672 rcu_read_lock();
4673 slave = bond_first_slave_rcu(bond);
4674 if (!slave)
4675 goto out;
4676 slave_ops = slave->dev->netdev_ops;
4677 if (!slave_ops->ndo_neigh_setup)
4678 goto out;
4679
4680 /* TODO: find another way [1] to implement this.
4681 * Passing a zeroed structure is fragile,
4682 * but at least we do not pass garbage.
4683 *
4684 * [1] One way would be that ndo_neigh_setup() never touch
4685 * struct neigh_parms, but propagate the new neigh_setup()
4686 * back to ___neigh_create() / neigh_parms_alloc()
4687 */
4688 memset(&parms, 0, sizeof(parms));
4689 ret = slave_ops->ndo_neigh_setup(slave->dev, &parms);
4690
4691 if (ret)
4692 goto out;
4693
4694 if (parms.neigh_setup)
4695 ret = parms.neigh_setup(n);
4696 out:
4697 rcu_read_unlock();
4698 return ret;
4699 }
4700
4701 /* The bonding ndo_neigh_setup is called at init time beofre any
4702 * slave exists. So we must declare proxy setup function which will
4703 * be used at run time to resolve the actual slave neigh param setup.
4704 *
4705 * It's also called by master devices (such as vlans) to setup their
4706 * underlying devices. In that case - do nothing, we're already set up from
4707 * our init.
4708 */
bond_neigh_setup(struct net_device * dev,struct neigh_parms * parms)4709 static int bond_neigh_setup(struct net_device *dev,
4710 struct neigh_parms *parms)
4711 {
4712 /* modify only our neigh_parms */
4713 if (parms->dev == dev)
4714 parms->neigh_setup = bond_neigh_init;
4715
4716 return 0;
4717 }
4718
4719 /* Change the MTU of all of a master's slaves to match the master */
bond_change_mtu(struct net_device * bond_dev,int new_mtu)4720 static int bond_change_mtu(struct net_device *bond_dev, int new_mtu)
4721 {
4722 struct bonding *bond = netdev_priv(bond_dev);
4723 struct slave *slave, *rollback_slave;
4724 struct list_head *iter;
4725 int res = 0;
4726
4727 netdev_dbg(bond_dev, "bond=%p, new_mtu=%d\n", bond, new_mtu);
4728
4729 bond_for_each_slave(bond, slave, iter) {
4730 slave_dbg(bond_dev, slave->dev, "s %p c_m %p\n",
4731 slave, slave->dev->netdev_ops->ndo_change_mtu);
4732
4733 res = dev_set_mtu(slave->dev, new_mtu);
4734
4735 if (res) {
4736 /* If we failed to set the slave's mtu to the new value
4737 * we must abort the operation even in ACTIVE_BACKUP
4738 * mode, because if we allow the backup slaves to have
4739 * different mtu values than the active slave we'll
4740 * need to change their mtu when doing a failover. That
4741 * means changing their mtu from timer context, which
4742 * is probably not a good idea.
4743 */
4744 slave_dbg(bond_dev, slave->dev, "err %d setting mtu to %d\n",
4745 res, new_mtu);
4746 goto unwind;
4747 }
4748 }
4749
4750 bond_dev->mtu = new_mtu;
4751
4752 return 0;
4753
4754 unwind:
4755 /* unwind from head to the slave that failed */
4756 bond_for_each_slave(bond, rollback_slave, iter) {
4757 int tmp_res;
4758
4759 if (rollback_slave == slave)
4760 break;
4761
4762 tmp_res = dev_set_mtu(rollback_slave->dev, bond_dev->mtu);
4763 if (tmp_res)
4764 slave_dbg(bond_dev, rollback_slave->dev, "unwind err %d\n",
4765 tmp_res);
4766 }
4767
4768 return res;
4769 }
4770
4771 /* Change HW address
4772 *
4773 * Note that many devices must be down to change the HW address, and
4774 * downing the master releases all slaves. We can make bonds full of
4775 * bonding devices to test this, however.
4776 */
bond_set_mac_address(struct net_device * bond_dev,void * addr)4777 static int bond_set_mac_address(struct net_device *bond_dev, void *addr)
4778 {
4779 struct bonding *bond = netdev_priv(bond_dev);
4780 struct slave *slave, *rollback_slave;
4781 struct sockaddr_storage *ss = addr, tmp_ss;
4782 struct list_head *iter;
4783 int res = 0;
4784
4785 if (BOND_MODE(bond) == BOND_MODE_ALB)
4786 return bond_alb_set_mac_address(bond_dev, addr);
4787
4788
4789 netdev_dbg(bond_dev, "%s: bond=%p\n", __func__, bond);
4790
4791 /* If fail_over_mac is enabled, do nothing and return success.
4792 * Returning an error causes ifenslave to fail.
4793 */
4794 if (bond->params.fail_over_mac &&
4795 BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP)
4796 return 0;
4797
4798 if (!is_valid_ether_addr(ss->__data))
4799 return -EADDRNOTAVAIL;
4800
4801 bond_for_each_slave(bond, slave, iter) {
4802 slave_dbg(bond_dev, slave->dev, "%s: slave=%p\n",
4803 __func__, slave);
4804 res = dev_set_mac_address(slave->dev, addr, NULL);
4805 if (res) {
4806 /* TODO: consider downing the slave
4807 * and retry ?
4808 * User should expect communications
4809 * breakage anyway until ARP finish
4810 * updating, so...
4811 */
4812 slave_dbg(bond_dev, slave->dev, "%s: err %d\n",
4813 __func__, res);
4814 goto unwind;
4815 }
4816 }
4817
4818 /* success */
4819 dev_addr_set(bond_dev, ss->__data);
4820 return 0;
4821
4822 unwind:
4823 memcpy(tmp_ss.__data, bond_dev->dev_addr, bond_dev->addr_len);
4824 tmp_ss.ss_family = bond_dev->type;
4825
4826 /* unwind from head to the slave that failed */
4827 bond_for_each_slave(bond, rollback_slave, iter) {
4828 int tmp_res;
4829
4830 if (rollback_slave == slave)
4831 break;
4832
4833 tmp_res = dev_set_mac_address(rollback_slave->dev,
4834 (struct sockaddr *)&tmp_ss, NULL);
4835 if (tmp_res) {
4836 slave_dbg(bond_dev, rollback_slave->dev, "%s: unwind err %d\n",
4837 __func__, tmp_res);
4838 }
4839 }
4840
4841 return res;
4842 }
4843
4844 /**
4845 * bond_get_slave_by_id - get xmit slave with slave_id
4846 * @bond: bonding device that is transmitting
4847 * @slave_id: slave id up to slave_cnt-1 through which to transmit
4848 *
4849 * This function tries to get slave with slave_id but in case
4850 * it fails, it tries to find the first available slave for transmission.
4851 */
bond_get_slave_by_id(struct bonding * bond,int slave_id)4852 static struct slave *bond_get_slave_by_id(struct bonding *bond,
4853 int slave_id)
4854 {
4855 struct list_head *iter;
4856 struct slave *slave;
4857 int i = slave_id;
4858
4859 /* Here we start from the slave with slave_id */
4860 bond_for_each_slave_rcu(bond, slave, iter) {
4861 if (--i < 0) {
4862 if (bond_slave_can_tx(slave))
4863 return slave;
4864 }
4865 }
4866
4867 /* Here we start from the first slave up to slave_id */
4868 i = slave_id;
4869 bond_for_each_slave_rcu(bond, slave, iter) {
4870 if (--i < 0)
4871 break;
4872 if (bond_slave_can_tx(slave))
4873 return slave;
4874 }
4875 /* no slave that can tx has been found */
4876 return NULL;
4877 }
4878
4879 /**
4880 * bond_rr_gen_slave_id - generate slave id based on packets_per_slave
4881 * @bond: bonding device to use
4882 *
4883 * Based on the value of the bonding device's packets_per_slave parameter
4884 * this function generates a slave id, which is usually used as the next
4885 * slave to transmit through.
4886 */
bond_rr_gen_slave_id(struct bonding * bond)4887 static u32 bond_rr_gen_slave_id(struct bonding *bond)
4888 {
4889 u32 slave_id;
4890 struct reciprocal_value reciprocal_packets_per_slave;
4891 int packets_per_slave = bond->params.packets_per_slave;
4892
4893 switch (packets_per_slave) {
4894 case 0:
4895 slave_id = get_random_u32();
4896 break;
4897 case 1:
4898 slave_id = this_cpu_inc_return(*bond->rr_tx_counter);
4899 break;
4900 default:
4901 reciprocal_packets_per_slave =
4902 bond->params.reciprocal_packets_per_slave;
4903 slave_id = this_cpu_inc_return(*bond->rr_tx_counter);
4904 slave_id = reciprocal_divide(slave_id,
4905 reciprocal_packets_per_slave);
4906 break;
4907 }
4908
4909 return slave_id;
4910 }
4911
bond_xmit_roundrobin_slave_get(struct bonding * bond,struct sk_buff * skb)4912 static struct slave *bond_xmit_roundrobin_slave_get(struct bonding *bond,
4913 struct sk_buff *skb)
4914 {
4915 struct slave *slave;
4916 int slave_cnt;
4917 u32 slave_id;
4918
4919 /* Start with the curr_active_slave that joined the bond as the
4920 * default for sending IGMP traffic. For failover purposes one
4921 * needs to maintain some consistency for the interface that will
4922 * send the join/membership reports. The curr_active_slave found
4923 * will send all of this type of traffic.
4924 */
4925 if (skb->protocol == htons(ETH_P_IP)) {
4926 int noff = skb_network_offset(skb);
4927 struct iphdr *iph;
4928
4929 if (unlikely(!pskb_may_pull(skb, noff + sizeof(*iph))))
4930 goto non_igmp;
4931
4932 iph = ip_hdr(skb);
4933 if (iph->protocol == IPPROTO_IGMP) {
4934 slave = rcu_dereference(bond->curr_active_slave);
4935 if (slave)
4936 return slave;
4937 return bond_get_slave_by_id(bond, 0);
4938 }
4939 }
4940
4941 non_igmp:
4942 slave_cnt = READ_ONCE(bond->slave_cnt);
4943 if (likely(slave_cnt)) {
4944 slave_id = bond_rr_gen_slave_id(bond) % slave_cnt;
4945 return bond_get_slave_by_id(bond, slave_id);
4946 }
4947 return NULL;
4948 }
4949
bond_xdp_xmit_roundrobin_slave_get(struct bonding * bond,struct xdp_buff * xdp)4950 static struct slave *bond_xdp_xmit_roundrobin_slave_get(struct bonding *bond,
4951 struct xdp_buff *xdp)
4952 {
4953 struct slave *slave;
4954 int slave_cnt;
4955 u32 slave_id;
4956 const struct ethhdr *eth;
4957 void *data = xdp->data;
4958
4959 if (data + sizeof(struct ethhdr) > xdp->data_end)
4960 goto non_igmp;
4961
4962 eth = (struct ethhdr *)data;
4963 data += sizeof(struct ethhdr);
4964
4965 /* See comment on IGMP in bond_xmit_roundrobin_slave_get() */
4966 if (eth->h_proto == htons(ETH_P_IP)) {
4967 const struct iphdr *iph;
4968
4969 if (data + sizeof(struct iphdr) > xdp->data_end)
4970 goto non_igmp;
4971
4972 iph = (struct iphdr *)data;
4973
4974 if (iph->protocol == IPPROTO_IGMP) {
4975 slave = rcu_dereference(bond->curr_active_slave);
4976 if (slave)
4977 return slave;
4978 return bond_get_slave_by_id(bond, 0);
4979 }
4980 }
4981
4982 non_igmp:
4983 slave_cnt = READ_ONCE(bond->slave_cnt);
4984 if (likely(slave_cnt)) {
4985 slave_id = bond_rr_gen_slave_id(bond) % slave_cnt;
4986 return bond_get_slave_by_id(bond, slave_id);
4987 }
4988 return NULL;
4989 }
4990
bond_xmit_roundrobin(struct sk_buff * skb,struct net_device * bond_dev)4991 static netdev_tx_t bond_xmit_roundrobin(struct sk_buff *skb,
4992 struct net_device *bond_dev)
4993 {
4994 struct bonding *bond = netdev_priv(bond_dev);
4995 struct slave *slave;
4996
4997 slave = bond_xmit_roundrobin_slave_get(bond, skb);
4998 if (likely(slave))
4999 return bond_dev_queue_xmit(bond, skb, slave->dev);
5000
5001 return bond_tx_drop(bond_dev, skb);
5002 }
5003
bond_xmit_activebackup_slave_get(struct bonding * bond)5004 static struct slave *bond_xmit_activebackup_slave_get(struct bonding *bond)
5005 {
5006 return rcu_dereference(bond->curr_active_slave);
5007 }
5008
5009 /* In active-backup mode, we know that bond->curr_active_slave is always valid if
5010 * the bond has a usable interface.
5011 */
bond_xmit_activebackup(struct sk_buff * skb,struct net_device * bond_dev)5012 static netdev_tx_t bond_xmit_activebackup(struct sk_buff *skb,
5013 struct net_device *bond_dev)
5014 {
5015 struct bonding *bond = netdev_priv(bond_dev);
5016 struct slave *slave;
5017
5018 slave = bond_xmit_activebackup_slave_get(bond);
5019 if (slave)
5020 return bond_dev_queue_xmit(bond, skb, slave->dev);
5021
5022 return bond_tx_drop(bond_dev, skb);
5023 }
5024
5025 /* Use this to update slave_array when (a) it's not appropriate to update
5026 * slave_array right away (note that update_slave_array() may sleep)
5027 * and / or (b) RTNL is not held.
5028 */
bond_slave_arr_work_rearm(struct bonding * bond,unsigned long delay)5029 void bond_slave_arr_work_rearm(struct bonding *bond, unsigned long delay)
5030 {
5031 queue_delayed_work(bond->wq, &bond->slave_arr_work, delay);
5032 }
5033
5034 /* Slave array work handler. Holds only RTNL */
bond_slave_arr_handler(struct work_struct * work)5035 static void bond_slave_arr_handler(struct work_struct *work)
5036 {
5037 struct bonding *bond = container_of(work, struct bonding,
5038 slave_arr_work.work);
5039 int ret;
5040
5041 if (!rtnl_trylock())
5042 goto err;
5043
5044 ret = bond_update_slave_arr(bond, NULL);
5045 rtnl_unlock();
5046 if (ret) {
5047 pr_warn_ratelimited("Failed to update slave array from WT\n");
5048 goto err;
5049 }
5050 return;
5051
5052 err:
5053 bond_slave_arr_work_rearm(bond, 1);
5054 }
5055
bond_skip_slave(struct bond_up_slave * slaves,struct slave * skipslave)5056 static void bond_skip_slave(struct bond_up_slave *slaves,
5057 struct slave *skipslave)
5058 {
5059 int idx;
5060
5061 /* Rare situation where caller has asked to skip a specific
5062 * slave but allocation failed (most likely!). BTW this is
5063 * only possible when the call is initiated from
5064 * __bond_release_one(). In this situation; overwrite the
5065 * skipslave entry in the array with the last entry from the
5066 * array to avoid a situation where the xmit path may choose
5067 * this to-be-skipped slave to send a packet out.
5068 */
5069 for (idx = 0; slaves && idx < slaves->count; idx++) {
5070 if (skipslave == slaves->arr[idx]) {
5071 slaves->arr[idx] =
5072 slaves->arr[slaves->count - 1];
5073 slaves->count--;
5074 break;
5075 }
5076 }
5077 }
5078
bond_set_slave_arr(struct bonding * bond,struct bond_up_slave * usable_slaves,struct bond_up_slave * all_slaves)5079 static void bond_set_slave_arr(struct bonding *bond,
5080 struct bond_up_slave *usable_slaves,
5081 struct bond_up_slave *all_slaves)
5082 {
5083 struct bond_up_slave *usable, *all;
5084
5085 usable = rtnl_dereference(bond->usable_slaves);
5086 rcu_assign_pointer(bond->usable_slaves, usable_slaves);
5087 kfree_rcu(usable, rcu);
5088
5089 all = rtnl_dereference(bond->all_slaves);
5090 rcu_assign_pointer(bond->all_slaves, all_slaves);
5091 kfree_rcu(all, rcu);
5092 }
5093
bond_reset_slave_arr(struct bonding * bond)5094 static void bond_reset_slave_arr(struct bonding *bond)
5095 {
5096 bond_set_slave_arr(bond, NULL, NULL);
5097 }
5098
5099 /* Build the usable slaves array in control path for modes that use xmit-hash
5100 * to determine the slave interface -
5101 * (a) BOND_MODE_8023AD
5102 * (b) BOND_MODE_XOR
5103 * (c) (BOND_MODE_TLB || BOND_MODE_ALB) && tlb_dynamic_lb == 0
5104 *
5105 * The caller is expected to hold RTNL only and NO other lock!
5106 */
bond_update_slave_arr(struct bonding * bond,struct slave * skipslave)5107 int bond_update_slave_arr(struct bonding *bond, struct slave *skipslave)
5108 {
5109 struct bond_up_slave *usable_slaves = NULL, *all_slaves = NULL;
5110 struct slave *slave;
5111 struct list_head *iter;
5112 int agg_id = 0;
5113 int ret = 0;
5114
5115 might_sleep();
5116
5117 usable_slaves = kzalloc(struct_size(usable_slaves, arr,
5118 bond->slave_cnt), GFP_KERNEL);
5119 all_slaves = kzalloc(struct_size(all_slaves, arr,
5120 bond->slave_cnt), GFP_KERNEL);
5121 if (!usable_slaves || !all_slaves) {
5122 ret = -ENOMEM;
5123 goto out;
5124 }
5125 if (BOND_MODE(bond) == BOND_MODE_8023AD) {
5126 struct ad_info ad_info;
5127
5128 spin_lock_bh(&bond->mode_lock);
5129 if (bond_3ad_get_active_agg_info(bond, &ad_info)) {
5130 spin_unlock_bh(&bond->mode_lock);
5131 pr_debug("bond_3ad_get_active_agg_info failed\n");
5132 /* No active aggragator means it's not safe to use
5133 * the previous array.
5134 */
5135 bond_reset_slave_arr(bond);
5136 goto out;
5137 }
5138 spin_unlock_bh(&bond->mode_lock);
5139 agg_id = ad_info.aggregator_id;
5140 }
5141 bond_for_each_slave(bond, slave, iter) {
5142 if (skipslave == slave)
5143 continue;
5144
5145 all_slaves->arr[all_slaves->count++] = slave;
5146 if (BOND_MODE(bond) == BOND_MODE_8023AD) {
5147 struct aggregator *agg;
5148
5149 agg = SLAVE_AD_INFO(slave)->port.aggregator;
5150 if (!agg || agg->aggregator_identifier != agg_id)
5151 continue;
5152 }
5153 if (!bond_slave_can_tx(slave))
5154 continue;
5155
5156 slave_dbg(bond->dev, slave->dev, "Adding slave to tx hash array[%d]\n",
5157 usable_slaves->count);
5158
5159 usable_slaves->arr[usable_slaves->count++] = slave;
5160 }
5161
5162 bond_set_slave_arr(bond, usable_slaves, all_slaves);
5163 return ret;
5164 out:
5165 if (ret != 0 && skipslave) {
5166 bond_skip_slave(rtnl_dereference(bond->all_slaves),
5167 skipslave);
5168 bond_skip_slave(rtnl_dereference(bond->usable_slaves),
5169 skipslave);
5170 }
5171 kfree_rcu(all_slaves, rcu);
5172 kfree_rcu(usable_slaves, rcu);
5173
5174 return ret;
5175 }
5176
bond_xmit_3ad_xor_slave_get(struct bonding * bond,struct sk_buff * skb,struct bond_up_slave * slaves)5177 static struct slave *bond_xmit_3ad_xor_slave_get(struct bonding *bond,
5178 struct sk_buff *skb,
5179 struct bond_up_slave *slaves)
5180 {
5181 struct slave *slave;
5182 unsigned int count;
5183 u32 hash;
5184
5185 hash = bond_xmit_hash(bond, skb);
5186 count = slaves ? READ_ONCE(slaves->count) : 0;
5187 if (unlikely(!count))
5188 return NULL;
5189
5190 slave = slaves->arr[hash % count];
5191 return slave;
5192 }
5193
bond_xdp_xmit_3ad_xor_slave_get(struct bonding * bond,struct xdp_buff * xdp)5194 static struct slave *bond_xdp_xmit_3ad_xor_slave_get(struct bonding *bond,
5195 struct xdp_buff *xdp)
5196 {
5197 struct bond_up_slave *slaves;
5198 unsigned int count;
5199 u32 hash;
5200
5201 hash = bond_xmit_hash_xdp(bond, xdp);
5202 slaves = rcu_dereference(bond->usable_slaves);
5203 count = slaves ? READ_ONCE(slaves->count) : 0;
5204 if (unlikely(!count))
5205 return NULL;
5206
5207 return slaves->arr[hash % count];
5208 }
5209
5210 /* Use this Xmit function for 3AD as well as XOR modes. The current
5211 * usable slave array is formed in the control path. The xmit function
5212 * just calculates hash and sends the packet out.
5213 */
bond_3ad_xor_xmit(struct sk_buff * skb,struct net_device * dev)5214 static netdev_tx_t bond_3ad_xor_xmit(struct sk_buff *skb,
5215 struct net_device *dev)
5216 {
5217 struct bonding *bond = netdev_priv(dev);
5218 struct bond_up_slave *slaves;
5219 struct slave *slave;
5220
5221 slaves = rcu_dereference(bond->usable_slaves);
5222 slave = bond_xmit_3ad_xor_slave_get(bond, skb, slaves);
5223 if (likely(slave))
5224 return bond_dev_queue_xmit(bond, skb, slave->dev);
5225
5226 return bond_tx_drop(dev, skb);
5227 }
5228
5229 /* in broadcast mode, we send everything to all usable interfaces. */
bond_xmit_broadcast(struct sk_buff * skb,struct net_device * bond_dev)5230 static netdev_tx_t bond_xmit_broadcast(struct sk_buff *skb,
5231 struct net_device *bond_dev)
5232 {
5233 struct bonding *bond = netdev_priv(bond_dev);
5234 struct slave *slave = NULL;
5235 struct list_head *iter;
5236 bool xmit_suc = false;
5237 bool skb_used = false;
5238
5239 bond_for_each_slave_rcu(bond, slave, iter) {
5240 struct sk_buff *skb2;
5241
5242 if (!(bond_slave_is_up(slave) && slave->link == BOND_LINK_UP))
5243 continue;
5244
5245 if (bond_is_last_slave(bond, slave)) {
5246 skb2 = skb;
5247 skb_used = true;
5248 } else {
5249 skb2 = skb_clone(skb, GFP_ATOMIC);
5250 if (!skb2) {
5251 net_err_ratelimited("%s: Error: %s: skb_clone() failed\n",
5252 bond_dev->name, __func__);
5253 continue;
5254 }
5255 }
5256
5257 if (bond_dev_queue_xmit(bond, skb2, slave->dev) == NETDEV_TX_OK)
5258 xmit_suc = true;
5259 }
5260
5261 if (!skb_used)
5262 dev_kfree_skb_any(skb);
5263
5264 if (xmit_suc)
5265 return NETDEV_TX_OK;
5266
5267 dev_core_stats_tx_dropped_inc(bond_dev);
5268 return NET_XMIT_DROP;
5269 }
5270
5271 /*------------------------- Device initialization ---------------------------*/
5272
5273 /* Lookup the slave that corresponds to a qid */
bond_slave_override(struct bonding * bond,struct sk_buff * skb)5274 static inline int bond_slave_override(struct bonding *bond,
5275 struct sk_buff *skb)
5276 {
5277 struct slave *slave = NULL;
5278 struct list_head *iter;
5279
5280 if (!skb_rx_queue_recorded(skb))
5281 return 1;
5282
5283 /* Find out if any slaves have the same mapping as this skb. */
5284 bond_for_each_slave_rcu(bond, slave, iter) {
5285 if (slave->queue_id == skb_get_queue_mapping(skb)) {
5286 if (bond_slave_is_up(slave) &&
5287 slave->link == BOND_LINK_UP) {
5288 bond_dev_queue_xmit(bond, skb, slave->dev);
5289 return 0;
5290 }
5291 /* If the slave isn't UP, use default transmit policy. */
5292 break;
5293 }
5294 }
5295
5296 return 1;
5297 }
5298
5299
bond_select_queue(struct net_device * dev,struct sk_buff * skb,struct net_device * sb_dev)5300 static u16 bond_select_queue(struct net_device *dev, struct sk_buff *skb,
5301 struct net_device *sb_dev)
5302 {
5303 /* This helper function exists to help dev_pick_tx get the correct
5304 * destination queue. Using a helper function skips a call to
5305 * skb_tx_hash and will put the skbs in the queue we expect on their
5306 * way down to the bonding driver.
5307 */
5308 u16 txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) : 0;
5309
5310 /* Save the original txq to restore before passing to the driver */
5311 qdisc_skb_cb(skb)->slave_dev_queue_mapping = skb_get_queue_mapping(skb);
5312
5313 if (unlikely(txq >= dev->real_num_tx_queues)) {
5314 do {
5315 txq -= dev->real_num_tx_queues;
5316 } while (txq >= dev->real_num_tx_queues);
5317 }
5318 return txq;
5319 }
5320
bond_xmit_get_slave(struct net_device * master_dev,struct sk_buff * skb,bool all_slaves)5321 static struct net_device *bond_xmit_get_slave(struct net_device *master_dev,
5322 struct sk_buff *skb,
5323 bool all_slaves)
5324 {
5325 struct bonding *bond = netdev_priv(master_dev);
5326 struct bond_up_slave *slaves;
5327 struct slave *slave = NULL;
5328
5329 switch (BOND_MODE(bond)) {
5330 case BOND_MODE_ROUNDROBIN:
5331 slave = bond_xmit_roundrobin_slave_get(bond, skb);
5332 break;
5333 case BOND_MODE_ACTIVEBACKUP:
5334 slave = bond_xmit_activebackup_slave_get(bond);
5335 break;
5336 case BOND_MODE_8023AD:
5337 case BOND_MODE_XOR:
5338 if (all_slaves)
5339 slaves = rcu_dereference(bond->all_slaves);
5340 else
5341 slaves = rcu_dereference(bond->usable_slaves);
5342 slave = bond_xmit_3ad_xor_slave_get(bond, skb, slaves);
5343 break;
5344 case BOND_MODE_BROADCAST:
5345 break;
5346 case BOND_MODE_ALB:
5347 slave = bond_xmit_alb_slave_get(bond, skb);
5348 break;
5349 case BOND_MODE_TLB:
5350 slave = bond_xmit_tlb_slave_get(bond, skb);
5351 break;
5352 default:
5353 /* Should never happen, mode already checked */
5354 WARN_ONCE(true, "Unknown bonding mode");
5355 break;
5356 }
5357
5358 if (slave)
5359 return slave->dev;
5360 return NULL;
5361 }
5362
bond_sk_to_flow(struct sock * sk,struct flow_keys * flow)5363 static void bond_sk_to_flow(struct sock *sk, struct flow_keys *flow)
5364 {
5365 switch (sk->sk_family) {
5366 #if IS_ENABLED(CONFIG_IPV6)
5367 case AF_INET6:
5368 if (ipv6_only_sock(sk) ||
5369 ipv6_addr_type(&sk->sk_v6_daddr) != IPV6_ADDR_MAPPED) {
5370 flow->control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
5371 flow->addrs.v6addrs.src = inet6_sk(sk)->saddr;
5372 flow->addrs.v6addrs.dst = sk->sk_v6_daddr;
5373 break;
5374 }
5375 fallthrough;
5376 #endif
5377 default: /* AF_INET */
5378 flow->control.addr_type = FLOW_DISSECTOR_KEY_IPV4_ADDRS;
5379 flow->addrs.v4addrs.src = inet_sk(sk)->inet_rcv_saddr;
5380 flow->addrs.v4addrs.dst = inet_sk(sk)->inet_daddr;
5381 break;
5382 }
5383
5384 flow->ports.src = inet_sk(sk)->inet_sport;
5385 flow->ports.dst = inet_sk(sk)->inet_dport;
5386 }
5387
5388 /**
5389 * bond_sk_hash_l34 - generate a hash value based on the socket's L3 and L4 fields
5390 * @sk: socket to use for headers
5391 *
5392 * This function will extract the necessary field from the socket and use
5393 * them to generate a hash based on the LAYER34 xmit_policy.
5394 * Assumes that sk is a TCP or UDP socket.
5395 */
bond_sk_hash_l34(struct sock * sk)5396 static u32 bond_sk_hash_l34(struct sock *sk)
5397 {
5398 struct flow_keys flow;
5399 u32 hash;
5400
5401 bond_sk_to_flow(sk, &flow);
5402
5403 /* L4 */
5404 memcpy(&hash, &flow.ports.ports, sizeof(hash));
5405 /* L3 */
5406 return bond_ip_hash(hash, &flow, BOND_XMIT_POLICY_LAYER34);
5407 }
5408
__bond_sk_get_lower_dev(struct bonding * bond,struct sock * sk)5409 static struct net_device *__bond_sk_get_lower_dev(struct bonding *bond,
5410 struct sock *sk)
5411 {
5412 struct bond_up_slave *slaves;
5413 struct slave *slave;
5414 unsigned int count;
5415 u32 hash;
5416
5417 slaves = rcu_dereference(bond->usable_slaves);
5418 count = slaves ? READ_ONCE(slaves->count) : 0;
5419 if (unlikely(!count))
5420 return NULL;
5421
5422 hash = bond_sk_hash_l34(sk);
5423 slave = slaves->arr[hash % count];
5424
5425 return slave->dev;
5426 }
5427
bond_sk_get_lower_dev(struct net_device * dev,struct sock * sk)5428 static struct net_device *bond_sk_get_lower_dev(struct net_device *dev,
5429 struct sock *sk)
5430 {
5431 struct bonding *bond = netdev_priv(dev);
5432 struct net_device *lower = NULL;
5433
5434 rcu_read_lock();
5435 if (bond_sk_check(bond))
5436 lower = __bond_sk_get_lower_dev(bond, sk);
5437 rcu_read_unlock();
5438
5439 return lower;
5440 }
5441
5442 #if IS_ENABLED(CONFIG_TLS_DEVICE)
bond_tls_device_xmit(struct bonding * bond,struct sk_buff * skb,struct net_device * dev)5443 static netdev_tx_t bond_tls_device_xmit(struct bonding *bond, struct sk_buff *skb,
5444 struct net_device *dev)
5445 {
5446 struct net_device *tls_netdev = rcu_dereference(tls_get_ctx(skb->sk)->netdev);
5447
5448 /* tls_netdev might become NULL, even if tls_is_skb_tx_device_offloaded
5449 * was true, if tls_device_down is running in parallel, but it's OK,
5450 * because bond_get_slave_by_dev has a NULL check.
5451 */
5452 if (likely(bond_get_slave_by_dev(bond, tls_netdev)))
5453 return bond_dev_queue_xmit(bond, skb, tls_netdev);
5454 return bond_tx_drop(dev, skb);
5455 }
5456 #endif
5457
__bond_start_xmit(struct sk_buff * skb,struct net_device * dev)5458 static netdev_tx_t __bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
5459 {
5460 struct bonding *bond = netdev_priv(dev);
5461
5462 if (bond_should_override_tx_queue(bond) &&
5463 !bond_slave_override(bond, skb))
5464 return NETDEV_TX_OK;
5465
5466 #if IS_ENABLED(CONFIG_TLS_DEVICE)
5467 if (tls_is_skb_tx_device_offloaded(skb))
5468 return bond_tls_device_xmit(bond, skb, dev);
5469 #endif
5470
5471 switch (BOND_MODE(bond)) {
5472 case BOND_MODE_ROUNDROBIN:
5473 return bond_xmit_roundrobin(skb, dev);
5474 case BOND_MODE_ACTIVEBACKUP:
5475 return bond_xmit_activebackup(skb, dev);
5476 case BOND_MODE_8023AD:
5477 case BOND_MODE_XOR:
5478 return bond_3ad_xor_xmit(skb, dev);
5479 case BOND_MODE_BROADCAST:
5480 return bond_xmit_broadcast(skb, dev);
5481 case BOND_MODE_ALB:
5482 return bond_alb_xmit(skb, dev);
5483 case BOND_MODE_TLB:
5484 return bond_tlb_xmit(skb, dev);
5485 default:
5486 /* Should never happen, mode already checked */
5487 netdev_err(dev, "Unknown bonding mode %d\n", BOND_MODE(bond));
5488 WARN_ON_ONCE(1);
5489 return bond_tx_drop(dev, skb);
5490 }
5491 }
5492
bond_start_xmit(struct sk_buff * skb,struct net_device * dev)5493 static netdev_tx_t bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
5494 {
5495 struct bonding *bond = netdev_priv(dev);
5496 netdev_tx_t ret = NETDEV_TX_OK;
5497
5498 /* If we risk deadlock from transmitting this in the
5499 * netpoll path, tell netpoll to queue the frame for later tx
5500 */
5501 if (unlikely(is_netpoll_tx_blocked(dev)))
5502 return NETDEV_TX_BUSY;
5503
5504 rcu_read_lock();
5505 if (bond_has_slaves(bond))
5506 ret = __bond_start_xmit(skb, dev);
5507 else
5508 ret = bond_tx_drop(dev, skb);
5509 rcu_read_unlock();
5510
5511 return ret;
5512 }
5513
5514 static struct net_device *
bond_xdp_get_xmit_slave(struct net_device * bond_dev,struct xdp_buff * xdp)5515 bond_xdp_get_xmit_slave(struct net_device *bond_dev, struct xdp_buff *xdp)
5516 {
5517 struct bonding *bond = netdev_priv(bond_dev);
5518 struct slave *slave;
5519
5520 /* Caller needs to hold rcu_read_lock() */
5521
5522 switch (BOND_MODE(bond)) {
5523 case BOND_MODE_ROUNDROBIN:
5524 slave = bond_xdp_xmit_roundrobin_slave_get(bond, xdp);
5525 break;
5526
5527 case BOND_MODE_ACTIVEBACKUP:
5528 slave = bond_xmit_activebackup_slave_get(bond);
5529 break;
5530
5531 case BOND_MODE_8023AD:
5532 case BOND_MODE_XOR:
5533 slave = bond_xdp_xmit_3ad_xor_slave_get(bond, xdp);
5534 break;
5535
5536 default:
5537 if (net_ratelimit())
5538 netdev_err(bond_dev, "Unknown bonding mode %d for xdp xmit\n",
5539 BOND_MODE(bond));
5540 return NULL;
5541 }
5542
5543 if (slave)
5544 return slave->dev;
5545
5546 return NULL;
5547 }
5548
bond_xdp_xmit(struct net_device * bond_dev,int n,struct xdp_frame ** frames,u32 flags)5549 static int bond_xdp_xmit(struct net_device *bond_dev,
5550 int n, struct xdp_frame **frames, u32 flags)
5551 {
5552 int nxmit, err = -ENXIO;
5553
5554 rcu_read_lock();
5555
5556 for (nxmit = 0; nxmit < n; nxmit++) {
5557 struct xdp_frame *frame = frames[nxmit];
5558 struct xdp_frame *frames1[] = {frame};
5559 struct net_device *slave_dev;
5560 struct xdp_buff xdp;
5561
5562 xdp_convert_frame_to_buff(frame, &xdp);
5563
5564 slave_dev = bond_xdp_get_xmit_slave(bond_dev, &xdp);
5565 if (!slave_dev) {
5566 err = -ENXIO;
5567 break;
5568 }
5569
5570 err = slave_dev->netdev_ops->ndo_xdp_xmit(slave_dev, 1, frames1, flags);
5571 if (err < 1)
5572 break;
5573 }
5574
5575 rcu_read_unlock();
5576
5577 /* If error happened on the first frame then we can pass the error up, otherwise
5578 * report the number of frames that were xmitted.
5579 */
5580 if (err < 0)
5581 return (nxmit == 0 ? err : nxmit);
5582
5583 return nxmit;
5584 }
5585
bond_xdp_set(struct net_device * dev,struct bpf_prog * prog,struct netlink_ext_ack * extack)5586 static int bond_xdp_set(struct net_device *dev, struct bpf_prog *prog,
5587 struct netlink_ext_ack *extack)
5588 {
5589 struct bonding *bond = netdev_priv(dev);
5590 struct list_head *iter;
5591 struct slave *slave, *rollback_slave;
5592 struct bpf_prog *old_prog;
5593 struct netdev_bpf xdp = {
5594 .command = XDP_SETUP_PROG,
5595 .flags = 0,
5596 .prog = prog,
5597 .extack = extack,
5598 };
5599 int err;
5600
5601 ASSERT_RTNL();
5602
5603 if (!bond_xdp_check(bond))
5604 return -EOPNOTSUPP;
5605
5606 old_prog = bond->xdp_prog;
5607 bond->xdp_prog = prog;
5608
5609 bond_for_each_slave(bond, slave, iter) {
5610 struct net_device *slave_dev = slave->dev;
5611
5612 if (!slave_dev->netdev_ops->ndo_bpf ||
5613 !slave_dev->netdev_ops->ndo_xdp_xmit) {
5614 SLAVE_NL_ERR(dev, slave_dev, extack,
5615 "Slave device does not support XDP");
5616 err = -EOPNOTSUPP;
5617 goto err;
5618 }
5619
5620 if (dev_xdp_prog_count(slave_dev) > 0) {
5621 SLAVE_NL_ERR(dev, slave_dev, extack,
5622 "Slave has XDP program loaded, please unload before enslaving");
5623 err = -EOPNOTSUPP;
5624 goto err;
5625 }
5626
5627 err = slave_dev->netdev_ops->ndo_bpf(slave_dev, &xdp);
5628 if (err < 0) {
5629 /* ndo_bpf() sets extack error message */
5630 slave_err(dev, slave_dev, "Error %d calling ndo_bpf\n", err);
5631 goto err;
5632 }
5633 if (prog)
5634 bpf_prog_inc(prog);
5635 }
5636
5637 if (prog) {
5638 static_branch_inc(&bpf_master_redirect_enabled_key);
5639 } else if (old_prog) {
5640 bpf_prog_put(old_prog);
5641 static_branch_dec(&bpf_master_redirect_enabled_key);
5642 }
5643
5644 return 0;
5645
5646 err:
5647 /* unwind the program changes */
5648 bond->xdp_prog = old_prog;
5649 xdp.prog = old_prog;
5650 xdp.extack = NULL; /* do not overwrite original error */
5651
5652 bond_for_each_slave(bond, rollback_slave, iter) {
5653 struct net_device *slave_dev = rollback_slave->dev;
5654 int err_unwind;
5655
5656 if (slave == rollback_slave)
5657 break;
5658
5659 err_unwind = slave_dev->netdev_ops->ndo_bpf(slave_dev, &xdp);
5660 if (err_unwind < 0)
5661 slave_err(dev, slave_dev,
5662 "Error %d when unwinding XDP program change\n", err_unwind);
5663 else if (xdp.prog)
5664 bpf_prog_inc(xdp.prog);
5665 }
5666 return err;
5667 }
5668
bond_xdp(struct net_device * dev,struct netdev_bpf * xdp)5669 static int bond_xdp(struct net_device *dev, struct netdev_bpf *xdp)
5670 {
5671 switch (xdp->command) {
5672 case XDP_SETUP_PROG:
5673 return bond_xdp_set(dev, xdp->prog, xdp->extack);
5674 default:
5675 return -EINVAL;
5676 }
5677 }
5678
bond_mode_bcast_speed(struct slave * slave,u32 speed)5679 static u32 bond_mode_bcast_speed(struct slave *slave, u32 speed)
5680 {
5681 if (speed == 0 || speed == SPEED_UNKNOWN)
5682 speed = slave->speed;
5683 else
5684 speed = min(speed, slave->speed);
5685
5686 return speed;
5687 }
5688
5689 /* Set the BOND_PHC_INDEX flag to notify user space */
bond_set_phc_index_flag(struct kernel_hwtstamp_config * kernel_cfg)5690 static int bond_set_phc_index_flag(struct kernel_hwtstamp_config *kernel_cfg)
5691 {
5692 struct ifreq *ifr = kernel_cfg->ifr;
5693 struct hwtstamp_config cfg;
5694
5695 if (kernel_cfg->copied_to_user) {
5696 /* Lower device has a legacy implementation */
5697 if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg)))
5698 return -EFAULT;
5699
5700 cfg.flags |= HWTSTAMP_FLAG_BONDED_PHC_INDEX;
5701 if (copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)))
5702 return -EFAULT;
5703 } else {
5704 kernel_cfg->flags |= HWTSTAMP_FLAG_BONDED_PHC_INDEX;
5705 }
5706
5707 return 0;
5708 }
5709
bond_hwtstamp_get(struct net_device * dev,struct kernel_hwtstamp_config * cfg)5710 static int bond_hwtstamp_get(struct net_device *dev,
5711 struct kernel_hwtstamp_config *cfg)
5712 {
5713 struct bonding *bond = netdev_priv(dev);
5714 struct net_device *real_dev;
5715 int err;
5716
5717 real_dev = bond_option_active_slave_get_rcu(bond);
5718 if (!real_dev)
5719 return -EOPNOTSUPP;
5720
5721 err = generic_hwtstamp_get_lower(real_dev, cfg);
5722 if (err)
5723 return err;
5724
5725 return bond_set_phc_index_flag(cfg);
5726 }
5727
bond_hwtstamp_set(struct net_device * dev,struct kernel_hwtstamp_config * cfg,struct netlink_ext_ack * extack)5728 static int bond_hwtstamp_set(struct net_device *dev,
5729 struct kernel_hwtstamp_config *cfg,
5730 struct netlink_ext_ack *extack)
5731 {
5732 struct bonding *bond = netdev_priv(dev);
5733 struct net_device *real_dev;
5734 int err;
5735
5736 if (!(cfg->flags & HWTSTAMP_FLAG_BONDED_PHC_INDEX))
5737 return -EOPNOTSUPP;
5738
5739 real_dev = bond_option_active_slave_get_rcu(bond);
5740 if (!real_dev)
5741 return -EOPNOTSUPP;
5742
5743 err = generic_hwtstamp_set_lower(real_dev, cfg, extack);
5744 if (err)
5745 return err;
5746
5747 return bond_set_phc_index_flag(cfg);
5748 }
5749
bond_ethtool_get_link_ksettings(struct net_device * bond_dev,struct ethtool_link_ksettings * cmd)5750 static int bond_ethtool_get_link_ksettings(struct net_device *bond_dev,
5751 struct ethtool_link_ksettings *cmd)
5752 {
5753 struct bonding *bond = netdev_priv(bond_dev);
5754 struct list_head *iter;
5755 struct slave *slave;
5756 u32 speed = 0;
5757
5758 cmd->base.duplex = DUPLEX_UNKNOWN;
5759 cmd->base.port = PORT_OTHER;
5760
5761 /* Since bond_slave_can_tx returns false for all inactive or down slaves, we
5762 * do not need to check mode. Though link speed might not represent
5763 * the true receive or transmit bandwidth (not all modes are symmetric)
5764 * this is an accurate maximum.
5765 */
5766 bond_for_each_slave(bond, slave, iter) {
5767 if (bond_slave_can_tx(slave)) {
5768 bond_update_speed_duplex(slave);
5769 if (slave->speed != SPEED_UNKNOWN) {
5770 if (BOND_MODE(bond) == BOND_MODE_BROADCAST)
5771 speed = bond_mode_bcast_speed(slave,
5772 speed);
5773 else
5774 speed += slave->speed;
5775 }
5776 if (cmd->base.duplex == DUPLEX_UNKNOWN &&
5777 slave->duplex != DUPLEX_UNKNOWN)
5778 cmd->base.duplex = slave->duplex;
5779 }
5780 }
5781 cmd->base.speed = speed ? : SPEED_UNKNOWN;
5782
5783 return 0;
5784 }
5785
bond_ethtool_get_drvinfo(struct net_device * bond_dev,struct ethtool_drvinfo * drvinfo)5786 static void bond_ethtool_get_drvinfo(struct net_device *bond_dev,
5787 struct ethtool_drvinfo *drvinfo)
5788 {
5789 strscpy(drvinfo->driver, DRV_NAME, sizeof(drvinfo->driver));
5790 snprintf(drvinfo->fw_version, sizeof(drvinfo->fw_version), "%d",
5791 BOND_ABI_VERSION);
5792 }
5793
bond_ethtool_get_ts_info(struct net_device * bond_dev,struct ethtool_ts_info * info)5794 static int bond_ethtool_get_ts_info(struct net_device *bond_dev,
5795 struct ethtool_ts_info *info)
5796 {
5797 struct bonding *bond = netdev_priv(bond_dev);
5798 struct ethtool_ts_info ts_info;
5799 const struct ethtool_ops *ops;
5800 struct net_device *real_dev;
5801 bool sw_tx_support = false;
5802 struct phy_device *phydev;
5803 struct list_head *iter;
5804 struct slave *slave;
5805 int ret = 0;
5806
5807 rcu_read_lock();
5808 real_dev = bond_option_active_slave_get_rcu(bond);
5809 dev_hold(real_dev);
5810 rcu_read_unlock();
5811
5812 if (real_dev) {
5813 ops = real_dev->ethtool_ops;
5814 phydev = real_dev->phydev;
5815
5816 if (phy_has_tsinfo(phydev)) {
5817 ret = phy_ts_info(phydev, info);
5818 goto out;
5819 } else if (ops->get_ts_info) {
5820 ret = ops->get_ts_info(real_dev, info);
5821 goto out;
5822 }
5823 } else {
5824 /* Check if all slaves support software tx timestamping */
5825 rcu_read_lock();
5826 bond_for_each_slave_rcu(bond, slave, iter) {
5827 ret = -1;
5828 ops = slave->dev->ethtool_ops;
5829 phydev = slave->dev->phydev;
5830
5831 if (phy_has_tsinfo(phydev))
5832 ret = phy_ts_info(phydev, &ts_info);
5833 else if (ops->get_ts_info)
5834 ret = ops->get_ts_info(slave->dev, &ts_info);
5835
5836 if (!ret && (ts_info.so_timestamping & SOF_TIMESTAMPING_TX_SOFTWARE)) {
5837 sw_tx_support = true;
5838 continue;
5839 }
5840
5841 sw_tx_support = false;
5842 break;
5843 }
5844 rcu_read_unlock();
5845 }
5846
5847 ret = 0;
5848 info->so_timestamping = SOF_TIMESTAMPING_RX_SOFTWARE |
5849 SOF_TIMESTAMPING_SOFTWARE;
5850 if (sw_tx_support)
5851 info->so_timestamping |= SOF_TIMESTAMPING_TX_SOFTWARE;
5852
5853 info->phc_index = -1;
5854
5855 out:
5856 dev_put(real_dev);
5857 return ret;
5858 }
5859
5860 static const struct ethtool_ops bond_ethtool_ops = {
5861 .get_drvinfo = bond_ethtool_get_drvinfo,
5862 .get_link = ethtool_op_get_link,
5863 .get_link_ksettings = bond_ethtool_get_link_ksettings,
5864 .get_ts_info = bond_ethtool_get_ts_info,
5865 };
5866
5867 static const struct net_device_ops bond_netdev_ops = {
5868 .ndo_init = bond_init,
5869 .ndo_uninit = bond_uninit,
5870 .ndo_open = bond_open,
5871 .ndo_stop = bond_close,
5872 .ndo_start_xmit = bond_start_xmit,
5873 .ndo_select_queue = bond_select_queue,
5874 .ndo_get_stats64 = bond_get_stats,
5875 .ndo_eth_ioctl = bond_eth_ioctl,
5876 .ndo_siocbond = bond_do_ioctl,
5877 .ndo_siocdevprivate = bond_siocdevprivate,
5878 .ndo_change_rx_flags = bond_change_rx_flags,
5879 .ndo_set_rx_mode = bond_set_rx_mode,
5880 .ndo_change_mtu = bond_change_mtu,
5881 .ndo_set_mac_address = bond_set_mac_address,
5882 .ndo_neigh_setup = bond_neigh_setup,
5883 .ndo_vlan_rx_add_vid = bond_vlan_rx_add_vid,
5884 .ndo_vlan_rx_kill_vid = bond_vlan_rx_kill_vid,
5885 #ifdef CONFIG_NET_POLL_CONTROLLER
5886 .ndo_netpoll_setup = bond_netpoll_setup,
5887 .ndo_netpoll_cleanup = bond_netpoll_cleanup,
5888 .ndo_poll_controller = bond_poll_controller,
5889 #endif
5890 .ndo_add_slave = bond_enslave,
5891 .ndo_del_slave = bond_release,
5892 .ndo_fix_features = bond_fix_features,
5893 .ndo_features_check = passthru_features_check,
5894 .ndo_get_xmit_slave = bond_xmit_get_slave,
5895 .ndo_sk_get_lower_dev = bond_sk_get_lower_dev,
5896 .ndo_bpf = bond_xdp,
5897 .ndo_xdp_xmit = bond_xdp_xmit,
5898 .ndo_xdp_get_xmit_slave = bond_xdp_get_xmit_slave,
5899 .ndo_hwtstamp_get = bond_hwtstamp_get,
5900 .ndo_hwtstamp_set = bond_hwtstamp_set,
5901 };
5902
5903 static const struct device_type bond_type = {
5904 .name = "bond",
5905 };
5906
bond_destructor(struct net_device * bond_dev)5907 static void bond_destructor(struct net_device *bond_dev)
5908 {
5909 struct bonding *bond = netdev_priv(bond_dev);
5910
5911 if (bond->wq)
5912 destroy_workqueue(bond->wq);
5913
5914 free_percpu(bond->rr_tx_counter);
5915 }
5916
bond_setup(struct net_device * bond_dev)5917 void bond_setup(struct net_device *bond_dev)
5918 {
5919 struct bonding *bond = netdev_priv(bond_dev);
5920
5921 spin_lock_init(&bond->mode_lock);
5922 bond->params = bonding_defaults;
5923
5924 /* Initialize pointers */
5925 bond->dev = bond_dev;
5926
5927 /* Initialize the device entry points */
5928 ether_setup(bond_dev);
5929 bond_dev->max_mtu = ETH_MAX_MTU;
5930 bond_dev->netdev_ops = &bond_netdev_ops;
5931 bond_dev->ethtool_ops = &bond_ethtool_ops;
5932
5933 bond_dev->needs_free_netdev = true;
5934 bond_dev->priv_destructor = bond_destructor;
5935
5936 SET_NETDEV_DEVTYPE(bond_dev, &bond_type);
5937
5938 /* Initialize the device options */
5939 bond_dev->flags |= IFF_MASTER;
5940 bond_dev->priv_flags |= IFF_BONDING | IFF_UNICAST_FLT | IFF_NO_QUEUE;
5941 bond_dev->priv_flags &= ~(IFF_XMIT_DST_RELEASE | IFF_TX_SKB_SHARING);
5942
5943 #ifdef CONFIG_XFRM_OFFLOAD
5944 /* set up xfrm device ops (only supported in active-backup right now) */
5945 bond_dev->xfrmdev_ops = &bond_xfrmdev_ops;
5946 INIT_LIST_HEAD(&bond->ipsec_list);
5947 mutex_init(&bond->ipsec_lock);
5948 #endif /* CONFIG_XFRM_OFFLOAD */
5949
5950 /* don't acquire bond device's netif_tx_lock when transmitting */
5951 bond_dev->features |= NETIF_F_LLTX;
5952
5953 /* By default, we declare the bond to be fully
5954 * VLAN hardware accelerated capable. Special
5955 * care is taken in the various xmit functions
5956 * when there are slaves that are not hw accel
5957 * capable
5958 */
5959
5960 /* Don't allow bond devices to change network namespaces. */
5961 bond_dev->features |= NETIF_F_NETNS_LOCAL;
5962
5963 bond_dev->hw_features = BOND_VLAN_FEATURES |
5964 NETIF_F_HW_VLAN_CTAG_RX |
5965 NETIF_F_HW_VLAN_CTAG_FILTER |
5966 NETIF_F_HW_VLAN_STAG_RX |
5967 NETIF_F_HW_VLAN_STAG_FILTER;
5968
5969 bond_dev->hw_features |= NETIF_F_GSO_ENCAP_ALL;
5970 bond_dev->features |= bond_dev->hw_features;
5971 bond_dev->features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
5972 #ifdef CONFIG_XFRM_OFFLOAD
5973 bond_dev->hw_features |= BOND_XFRM_FEATURES;
5974 /* Only enable XFRM features if this is an active-backup config */
5975 if (BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP)
5976 bond_dev->features |= BOND_XFRM_FEATURES;
5977 #endif /* CONFIG_XFRM_OFFLOAD */
5978 }
5979
5980 /* Destroy a bonding device.
5981 * Must be under rtnl_lock when this function is called.
5982 */
bond_uninit(struct net_device * bond_dev)5983 static void bond_uninit(struct net_device *bond_dev)
5984 {
5985 struct bonding *bond = netdev_priv(bond_dev);
5986 struct list_head *iter;
5987 struct slave *slave;
5988
5989 bond_netpoll_cleanup(bond_dev);
5990
5991 /* Release the bonded slaves */
5992 bond_for_each_slave(bond, slave, iter)
5993 __bond_release_one(bond_dev, slave->dev, true, true);
5994 netdev_info(bond_dev, "Released all slaves\n");
5995
5996 #ifdef CONFIG_XFRM_OFFLOAD
5997 mutex_destroy(&bond->ipsec_lock);
5998 #endif /* CONFIG_XFRM_OFFLOAD */
5999
6000 bond_set_slave_arr(bond, NULL, NULL);
6001
6002 list_del(&bond->bond_list);
6003
6004 bond_debug_unregister(bond);
6005 }
6006
6007 /*------------------------- Module initialization ---------------------------*/
6008
bond_check_params(struct bond_params * params)6009 static int __init bond_check_params(struct bond_params *params)
6010 {
6011 int arp_validate_value, fail_over_mac_value, primary_reselect_value, i;
6012 struct bond_opt_value newval;
6013 const struct bond_opt_value *valptr;
6014 int arp_all_targets_value = 0;
6015 u16 ad_actor_sys_prio = 0;
6016 u16 ad_user_port_key = 0;
6017 __be32 arp_target[BOND_MAX_ARP_TARGETS] = { 0 };
6018 int arp_ip_count;
6019 int bond_mode = BOND_MODE_ROUNDROBIN;
6020 int xmit_hashtype = BOND_XMIT_POLICY_LAYER2;
6021 int lacp_fast = 0;
6022 int tlb_dynamic_lb;
6023
6024 /* Convert string parameters. */
6025 if (mode) {
6026 bond_opt_initstr(&newval, mode);
6027 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_MODE), &newval);
6028 if (!valptr) {
6029 pr_err("Error: Invalid bonding mode \"%s\"\n", mode);
6030 return -EINVAL;
6031 }
6032 bond_mode = valptr->value;
6033 }
6034
6035 if (xmit_hash_policy) {
6036 if (bond_mode == BOND_MODE_ROUNDROBIN ||
6037 bond_mode == BOND_MODE_ACTIVEBACKUP ||
6038 bond_mode == BOND_MODE_BROADCAST) {
6039 pr_info("xmit_hash_policy param is irrelevant in mode %s\n",
6040 bond_mode_name(bond_mode));
6041 } else {
6042 bond_opt_initstr(&newval, xmit_hash_policy);
6043 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_XMIT_HASH),
6044 &newval);
6045 if (!valptr) {
6046 pr_err("Error: Invalid xmit_hash_policy \"%s\"\n",
6047 xmit_hash_policy);
6048 return -EINVAL;
6049 }
6050 xmit_hashtype = valptr->value;
6051 }
6052 }
6053
6054 if (lacp_rate) {
6055 if (bond_mode != BOND_MODE_8023AD) {
6056 pr_info("lacp_rate param is irrelevant in mode %s\n",
6057 bond_mode_name(bond_mode));
6058 } else {
6059 bond_opt_initstr(&newval, lacp_rate);
6060 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_LACP_RATE),
6061 &newval);
6062 if (!valptr) {
6063 pr_err("Error: Invalid lacp rate \"%s\"\n",
6064 lacp_rate);
6065 return -EINVAL;
6066 }
6067 lacp_fast = valptr->value;
6068 }
6069 }
6070
6071 if (ad_select) {
6072 bond_opt_initstr(&newval, ad_select);
6073 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_AD_SELECT),
6074 &newval);
6075 if (!valptr) {
6076 pr_err("Error: Invalid ad_select \"%s\"\n", ad_select);
6077 return -EINVAL;
6078 }
6079 params->ad_select = valptr->value;
6080 if (bond_mode != BOND_MODE_8023AD)
6081 pr_warn("ad_select param only affects 802.3ad mode\n");
6082 } else {
6083 params->ad_select = BOND_AD_STABLE;
6084 }
6085
6086 if (max_bonds < 0) {
6087 pr_warn("Warning: max_bonds (%d) not in range %d-%d, so it was reset to BOND_DEFAULT_MAX_BONDS (%d)\n",
6088 max_bonds, 0, INT_MAX, BOND_DEFAULT_MAX_BONDS);
6089 max_bonds = BOND_DEFAULT_MAX_BONDS;
6090 }
6091
6092 if (miimon < 0) {
6093 pr_warn("Warning: miimon module parameter (%d), not in range 0-%d, so it was reset to 0\n",
6094 miimon, INT_MAX);
6095 miimon = 0;
6096 }
6097
6098 if (updelay < 0) {
6099 pr_warn("Warning: updelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
6100 updelay, INT_MAX);
6101 updelay = 0;
6102 }
6103
6104 if (downdelay < 0) {
6105 pr_warn("Warning: downdelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
6106 downdelay, INT_MAX);
6107 downdelay = 0;
6108 }
6109
6110 if ((use_carrier != 0) && (use_carrier != 1)) {
6111 pr_warn("Warning: use_carrier module parameter (%d), not of valid value (0/1), so it was set to 1\n",
6112 use_carrier);
6113 use_carrier = 1;
6114 }
6115
6116 if (num_peer_notif < 0 || num_peer_notif > 255) {
6117 pr_warn("Warning: num_grat_arp/num_unsol_na (%d) not in range 0-255 so it was reset to 1\n",
6118 num_peer_notif);
6119 num_peer_notif = 1;
6120 }
6121
6122 /* reset values for 802.3ad/TLB/ALB */
6123 if (!bond_mode_uses_arp(bond_mode)) {
6124 if (!miimon) {
6125 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");
6126 pr_warn("Forcing miimon to 100msec\n");
6127 miimon = BOND_DEFAULT_MIIMON;
6128 }
6129 }
6130
6131 if (tx_queues < 1 || tx_queues > 255) {
6132 pr_warn("Warning: tx_queues (%d) should be between 1 and 255, resetting to %d\n",
6133 tx_queues, BOND_DEFAULT_TX_QUEUES);
6134 tx_queues = BOND_DEFAULT_TX_QUEUES;
6135 }
6136
6137 if ((all_slaves_active != 0) && (all_slaves_active != 1)) {
6138 pr_warn("Warning: all_slaves_active module parameter (%d), not of valid value (0/1), so it was set to 0\n",
6139 all_slaves_active);
6140 all_slaves_active = 0;
6141 }
6142
6143 if (resend_igmp < 0 || resend_igmp > 255) {
6144 pr_warn("Warning: resend_igmp (%d) should be between 0 and 255, resetting to %d\n",
6145 resend_igmp, BOND_DEFAULT_RESEND_IGMP);
6146 resend_igmp = BOND_DEFAULT_RESEND_IGMP;
6147 }
6148
6149 bond_opt_initval(&newval, packets_per_slave);
6150 if (!bond_opt_parse(bond_opt_get(BOND_OPT_PACKETS_PER_SLAVE), &newval)) {
6151 pr_warn("Warning: packets_per_slave (%d) should be between 0 and %u resetting to 1\n",
6152 packets_per_slave, USHRT_MAX);
6153 packets_per_slave = 1;
6154 }
6155
6156 if (bond_mode == BOND_MODE_ALB) {
6157 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",
6158 updelay);
6159 }
6160
6161 if (!miimon) {
6162 if (updelay || downdelay) {
6163 /* just warn the user the up/down delay will have
6164 * no effect since miimon is zero...
6165 */
6166 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",
6167 updelay, downdelay);
6168 }
6169 } else {
6170 /* don't allow arp monitoring */
6171 if (arp_interval) {
6172 pr_warn("Warning: miimon (%d) and arp_interval (%d) can't be used simultaneously, disabling ARP monitoring\n",
6173 miimon, arp_interval);
6174 arp_interval = 0;
6175 }
6176
6177 if ((updelay % miimon) != 0) {
6178 pr_warn("Warning: updelay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n",
6179 updelay, miimon, (updelay / miimon) * miimon);
6180 }
6181
6182 updelay /= miimon;
6183
6184 if ((downdelay % miimon) != 0) {
6185 pr_warn("Warning: downdelay (%d) is not a multiple of miimon (%d), downdelay rounded to %d ms\n",
6186 downdelay, miimon,
6187 (downdelay / miimon) * miimon);
6188 }
6189
6190 downdelay /= miimon;
6191 }
6192
6193 if (arp_interval < 0) {
6194 pr_warn("Warning: arp_interval module parameter (%d), not in range 0-%d, so it was reset to 0\n",
6195 arp_interval, INT_MAX);
6196 arp_interval = 0;
6197 }
6198
6199 for (arp_ip_count = 0, i = 0;
6200 (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[i]; i++) {
6201 __be32 ip;
6202
6203 /* not a complete check, but good enough to catch mistakes */
6204 if (!in4_pton(arp_ip_target[i], -1, (u8 *)&ip, -1, NULL) ||
6205 !bond_is_ip_target_ok(ip)) {
6206 pr_warn("Warning: bad arp_ip_target module parameter (%s), ARP monitoring will not be performed\n",
6207 arp_ip_target[i]);
6208 arp_interval = 0;
6209 } else {
6210 if (bond_get_targets_ip(arp_target, ip) == -1)
6211 arp_target[arp_ip_count++] = ip;
6212 else
6213 pr_warn("Warning: duplicate address %pI4 in arp_ip_target, skipping\n",
6214 &ip);
6215 }
6216 }
6217
6218 if (arp_interval && !arp_ip_count) {
6219 /* don't allow arping if no arp_ip_target given... */
6220 pr_warn("Warning: arp_interval module parameter (%d) specified without providing an arp_ip_target parameter, arp_interval was reset to 0\n",
6221 arp_interval);
6222 arp_interval = 0;
6223 }
6224
6225 if (arp_validate) {
6226 if (!arp_interval) {
6227 pr_err("arp_validate requires arp_interval\n");
6228 return -EINVAL;
6229 }
6230
6231 bond_opt_initstr(&newval, arp_validate);
6232 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_ARP_VALIDATE),
6233 &newval);
6234 if (!valptr) {
6235 pr_err("Error: invalid arp_validate \"%s\"\n",
6236 arp_validate);
6237 return -EINVAL;
6238 }
6239 arp_validate_value = valptr->value;
6240 } else {
6241 arp_validate_value = 0;
6242 }
6243
6244 if (arp_all_targets) {
6245 bond_opt_initstr(&newval, arp_all_targets);
6246 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_ARP_ALL_TARGETS),
6247 &newval);
6248 if (!valptr) {
6249 pr_err("Error: invalid arp_all_targets_value \"%s\"\n",
6250 arp_all_targets);
6251 arp_all_targets_value = 0;
6252 } else {
6253 arp_all_targets_value = valptr->value;
6254 }
6255 }
6256
6257 if (miimon) {
6258 pr_info("MII link monitoring set to %d ms\n", miimon);
6259 } else if (arp_interval) {
6260 valptr = bond_opt_get_val(BOND_OPT_ARP_VALIDATE,
6261 arp_validate_value);
6262 pr_info("ARP monitoring set to %d ms, validate %s, with %d target(s):",
6263 arp_interval, valptr->string, arp_ip_count);
6264
6265 for (i = 0; i < arp_ip_count; i++)
6266 pr_cont(" %s", arp_ip_target[i]);
6267
6268 pr_cont("\n");
6269
6270 } else if (max_bonds) {
6271 /* miimon and arp_interval not set, we need one so things
6272 * work as expected, see bonding.txt for details
6273 */
6274 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");
6275 }
6276
6277 if (primary && !bond_mode_uses_primary(bond_mode)) {
6278 /* currently, using a primary only makes sense
6279 * in active backup, TLB or ALB modes
6280 */
6281 pr_warn("Warning: %s primary device specified but has no effect in %s mode\n",
6282 primary, bond_mode_name(bond_mode));
6283 primary = NULL;
6284 }
6285
6286 if (primary && primary_reselect) {
6287 bond_opt_initstr(&newval, primary_reselect);
6288 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_PRIMARY_RESELECT),
6289 &newval);
6290 if (!valptr) {
6291 pr_err("Error: Invalid primary_reselect \"%s\"\n",
6292 primary_reselect);
6293 return -EINVAL;
6294 }
6295 primary_reselect_value = valptr->value;
6296 } else {
6297 primary_reselect_value = BOND_PRI_RESELECT_ALWAYS;
6298 }
6299
6300 if (fail_over_mac) {
6301 bond_opt_initstr(&newval, fail_over_mac);
6302 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_FAIL_OVER_MAC),
6303 &newval);
6304 if (!valptr) {
6305 pr_err("Error: invalid fail_over_mac \"%s\"\n",
6306 fail_over_mac);
6307 return -EINVAL;
6308 }
6309 fail_over_mac_value = valptr->value;
6310 if (bond_mode != BOND_MODE_ACTIVEBACKUP)
6311 pr_warn("Warning: fail_over_mac only affects active-backup mode\n");
6312 } else {
6313 fail_over_mac_value = BOND_FOM_NONE;
6314 }
6315
6316 bond_opt_initstr(&newval, "default");
6317 valptr = bond_opt_parse(
6318 bond_opt_get(BOND_OPT_AD_ACTOR_SYS_PRIO),
6319 &newval);
6320 if (!valptr) {
6321 pr_err("Error: No ad_actor_sys_prio default value");
6322 return -EINVAL;
6323 }
6324 ad_actor_sys_prio = valptr->value;
6325
6326 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_AD_USER_PORT_KEY),
6327 &newval);
6328 if (!valptr) {
6329 pr_err("Error: No ad_user_port_key default value");
6330 return -EINVAL;
6331 }
6332 ad_user_port_key = valptr->value;
6333
6334 bond_opt_initstr(&newval, "default");
6335 valptr = bond_opt_parse(bond_opt_get(BOND_OPT_TLB_DYNAMIC_LB), &newval);
6336 if (!valptr) {
6337 pr_err("Error: No tlb_dynamic_lb default value");
6338 return -EINVAL;
6339 }
6340 tlb_dynamic_lb = valptr->value;
6341
6342 if (lp_interval == 0) {
6343 pr_warn("Warning: ip_interval must be between 1 and %d, so it was reset to %d\n",
6344 INT_MAX, BOND_ALB_DEFAULT_LP_INTERVAL);
6345 lp_interval = BOND_ALB_DEFAULT_LP_INTERVAL;
6346 }
6347
6348 /* fill params struct with the proper values */
6349 params->mode = bond_mode;
6350 params->xmit_policy = xmit_hashtype;
6351 params->miimon = miimon;
6352 params->num_peer_notif = num_peer_notif;
6353 params->arp_interval = arp_interval;
6354 params->arp_validate = arp_validate_value;
6355 params->arp_all_targets = arp_all_targets_value;
6356 params->missed_max = 2;
6357 params->updelay = updelay;
6358 params->downdelay = downdelay;
6359 params->peer_notif_delay = 0;
6360 params->use_carrier = use_carrier;
6361 params->lacp_active = 1;
6362 params->lacp_fast = lacp_fast;
6363 params->primary[0] = 0;
6364 params->primary_reselect = primary_reselect_value;
6365 params->fail_over_mac = fail_over_mac_value;
6366 params->tx_queues = tx_queues;
6367 params->all_slaves_active = all_slaves_active;
6368 params->resend_igmp = resend_igmp;
6369 params->min_links = min_links;
6370 params->lp_interval = lp_interval;
6371 params->packets_per_slave = packets_per_slave;
6372 params->tlb_dynamic_lb = tlb_dynamic_lb;
6373 params->ad_actor_sys_prio = ad_actor_sys_prio;
6374 eth_zero_addr(params->ad_actor_system);
6375 params->ad_user_port_key = ad_user_port_key;
6376 if (packets_per_slave > 0) {
6377 params->reciprocal_packets_per_slave =
6378 reciprocal_value(packets_per_slave);
6379 } else {
6380 /* reciprocal_packets_per_slave is unused if
6381 * packets_per_slave is 0 or 1, just initialize it
6382 */
6383 params->reciprocal_packets_per_slave =
6384 (struct reciprocal_value) { 0 };
6385 }
6386
6387 if (primary)
6388 strscpy_pad(params->primary, primary, sizeof(params->primary));
6389
6390 memcpy(params->arp_targets, arp_target, sizeof(arp_target));
6391 #if IS_ENABLED(CONFIG_IPV6)
6392 memset(params->ns_targets, 0, sizeof(struct in6_addr) * BOND_MAX_NS_TARGETS);
6393 #endif
6394
6395 return 0;
6396 }
6397
6398 /* Called from registration process */
bond_init(struct net_device * bond_dev)6399 static int bond_init(struct net_device *bond_dev)
6400 {
6401 struct bonding *bond = netdev_priv(bond_dev);
6402 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
6403
6404 netdev_dbg(bond_dev, "Begin bond_init\n");
6405
6406 bond->wq = alloc_ordered_workqueue(bond_dev->name, WQ_MEM_RECLAIM);
6407 if (!bond->wq)
6408 return -ENOMEM;
6409
6410 bond->notifier_ctx = false;
6411
6412 spin_lock_init(&bond->stats_lock);
6413 netdev_lockdep_set_classes(bond_dev);
6414
6415 list_add_tail(&bond->bond_list, &bn->dev_list);
6416
6417 bond_prepare_sysfs_group(bond);
6418
6419 bond_debug_register(bond);
6420
6421 /* Ensure valid dev_addr */
6422 if (is_zero_ether_addr(bond_dev->dev_addr) &&
6423 bond_dev->addr_assign_type == NET_ADDR_PERM)
6424 eth_hw_addr_random(bond_dev);
6425
6426 return 0;
6427 }
6428
bond_get_num_tx_queues(void)6429 unsigned int bond_get_num_tx_queues(void)
6430 {
6431 return tx_queues;
6432 }
6433
6434 /* Create a new bond based on the specified name and bonding parameters.
6435 * If name is NULL, obtain a suitable "bond%d" name for us.
6436 * Caller must NOT hold rtnl_lock; we need to release it here before we
6437 * set up our sysfs entries.
6438 */
bond_create(struct net * net,const char * name)6439 int bond_create(struct net *net, const char *name)
6440 {
6441 struct net_device *bond_dev;
6442 struct bonding *bond;
6443 int res = -ENOMEM;
6444
6445 rtnl_lock();
6446
6447 bond_dev = alloc_netdev_mq(sizeof(struct bonding),
6448 name ? name : "bond%d", NET_NAME_UNKNOWN,
6449 bond_setup, tx_queues);
6450 if (!bond_dev)
6451 goto out;
6452
6453 bond = netdev_priv(bond_dev);
6454 dev_net_set(bond_dev, net);
6455 bond_dev->rtnl_link_ops = &bond_link_ops;
6456
6457 res = register_netdevice(bond_dev);
6458 if (res < 0) {
6459 free_netdev(bond_dev);
6460 goto out;
6461 }
6462
6463 netif_carrier_off(bond_dev);
6464
6465 bond_work_init_all(bond);
6466
6467 out:
6468 rtnl_unlock();
6469 return res;
6470 }
6471
bond_net_init(struct net * net)6472 static int __net_init bond_net_init(struct net *net)
6473 {
6474 struct bond_net *bn = net_generic(net, bond_net_id);
6475
6476 bn->net = net;
6477 INIT_LIST_HEAD(&bn->dev_list);
6478
6479 bond_create_proc_dir(bn);
6480 bond_create_sysfs(bn);
6481
6482 return 0;
6483 }
6484
bond_net_exit_batch(struct list_head * net_list)6485 static void __net_exit bond_net_exit_batch(struct list_head *net_list)
6486 {
6487 struct bond_net *bn;
6488 struct net *net;
6489 LIST_HEAD(list);
6490
6491 list_for_each_entry(net, net_list, exit_list) {
6492 bn = net_generic(net, bond_net_id);
6493 bond_destroy_sysfs(bn);
6494 }
6495
6496 /* Kill off any bonds created after unregistering bond rtnl ops */
6497 rtnl_lock();
6498 list_for_each_entry(net, net_list, exit_list) {
6499 struct bonding *bond, *tmp_bond;
6500
6501 bn = net_generic(net, bond_net_id);
6502 list_for_each_entry_safe(bond, tmp_bond, &bn->dev_list, bond_list)
6503 unregister_netdevice_queue(bond->dev, &list);
6504 }
6505 unregister_netdevice_many(&list);
6506 rtnl_unlock();
6507
6508 list_for_each_entry(net, net_list, exit_list) {
6509 bn = net_generic(net, bond_net_id);
6510 bond_destroy_proc_dir(bn);
6511 }
6512 }
6513
6514 static struct pernet_operations bond_net_ops = {
6515 .init = bond_net_init,
6516 .exit_batch = bond_net_exit_batch,
6517 .id = &bond_net_id,
6518 .size = sizeof(struct bond_net),
6519 };
6520
bonding_init(void)6521 static int __init bonding_init(void)
6522 {
6523 int i;
6524 int res;
6525
6526 res = bond_check_params(&bonding_defaults);
6527 if (res)
6528 goto out;
6529
6530 bond_create_debugfs();
6531
6532 res = register_pernet_subsys(&bond_net_ops);
6533 if (res)
6534 goto err_net_ops;
6535
6536 res = bond_netlink_init();
6537 if (res)
6538 goto err_link;
6539
6540 for (i = 0; i < max_bonds; i++) {
6541 res = bond_create(&init_net, NULL);
6542 if (res)
6543 goto err;
6544 }
6545
6546 skb_flow_dissector_init(&flow_keys_bonding,
6547 flow_keys_bonding_keys,
6548 ARRAY_SIZE(flow_keys_bonding_keys));
6549
6550 register_netdevice_notifier(&bond_netdev_notifier);
6551 out:
6552 return res;
6553 err:
6554 bond_netlink_fini();
6555 err_link:
6556 unregister_pernet_subsys(&bond_net_ops);
6557 err_net_ops:
6558 bond_destroy_debugfs();
6559 goto out;
6560
6561 }
6562
bonding_exit(void)6563 static void __exit bonding_exit(void)
6564 {
6565 unregister_netdevice_notifier(&bond_netdev_notifier);
6566
6567 bond_netlink_fini();
6568 unregister_pernet_subsys(&bond_net_ops);
6569
6570 bond_destroy_debugfs();
6571
6572 #ifdef CONFIG_NET_POLL_CONTROLLER
6573 /* Make sure we don't have an imbalance on our netpoll blocking */
6574 WARN_ON(atomic_read(&netpoll_block_tx));
6575 #endif
6576 }
6577
6578 module_init(bonding_init);
6579 module_exit(bonding_exit);
6580 MODULE_LICENSE("GPL");
6581 MODULE_DESCRIPTION(DRV_DESCRIPTION);
6582 MODULE_AUTHOR("Thomas Davis, tadavis@lbl.gov and many others");
6583