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