Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Jiri Pirko | 0a2a78c | 2013-10-18 17:43:33 +0200 | [diff] [blame] | 2 | /* |
| 3 | * drivers/net/bond/bond_netlink.c - Netlink interface for bonding |
| 4 | * Copyright (c) 2013 Jiri Pirko <jiri@resnulli.us> |
sfeldma@cumulusnetworks.com | eecdaa6 | 2013-12-12 14:09:55 -0800 | [diff] [blame] | 5 | * Copyright (c) 2013 Scott Feldman <sfeldma@cumulusnetworks.com> |
Jiri Pirko | 0a2a78c | 2013-10-18 17:43:33 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
Jiri Pirko | 0a2a78c | 2013-10-18 17:43:33 +0200 | [diff] [blame] | 8 | #include <linux/module.h> |
| 9 | #include <linux/errno.h> |
| 10 | #include <linux/netdevice.h> |
| 11 | #include <linux/etherdevice.h> |
| 12 | #include <linux/if_link.h> |
| 13 | #include <linux/if_ether.h> |
| 14 | #include <net/netlink.h> |
| 15 | #include <net/rtnetlink.h> |
David S. Miller | 1ef8019 | 2014-11-10 13:27:49 -0500 | [diff] [blame] | 16 | #include <net/bonding.h> |
Jiri Pirko | 0a2a78c | 2013-10-18 17:43:33 +0200 | [diff] [blame] | 17 | |
Jiri Pirko | 3bad540 | 2014-01-22 09:05:56 +0100 | [diff] [blame] | 18 | static size_t bond_get_slave_size(const struct net_device *bond_dev, |
| 19 | const struct net_device *slave_dev) |
| 20 | { |
| 21 | return nla_total_size(sizeof(u8)) + /* IFLA_BOND_SLAVE_STATE */ |
| 22 | nla_total_size(sizeof(u8)) + /* IFLA_BOND_SLAVE_MII_STATUS */ |
| 23 | nla_total_size(sizeof(u32)) + /* IFLA_BOND_SLAVE_LINK_FAILURE_COUNT */ |
| 24 | nla_total_size(MAX_ADDR_LEN) + /* IFLA_BOND_SLAVE_PERM_HWADDR */ |
| 25 | nla_total_size(sizeof(u16)) + /* IFLA_BOND_SLAVE_QUEUE_ID */ |
| 26 | nla_total_size(sizeof(u16)) + /* IFLA_BOND_SLAVE_AD_AGGREGATOR_ID */ |
Nikolay Aleksandrov | 254cb6d | 2015-06-14 16:36:34 +0300 | [diff] [blame] | 27 | nla_total_size(sizeof(u8)) + /* IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE */ |
Nikolay Aleksandrov | 46ea297 | 2015-06-14 16:36:35 +0300 | [diff] [blame] | 28 | nla_total_size(sizeof(u16)) + /* IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE */ |
Jiri Pirko | 3bad540 | 2014-01-22 09:05:56 +0100 | [diff] [blame] | 29 | 0; |
| 30 | } |
| 31 | |
| 32 | static int bond_fill_slave_info(struct sk_buff *skb, |
| 33 | const struct net_device *bond_dev, |
| 34 | const struct net_device *slave_dev) |
sfeldma@cumulusnetworks.com | 1d3ee88 | 2014-01-16 22:57:56 -0800 | [diff] [blame] | 35 | { |
| 36 | struct slave *slave = bond_slave_get_rtnl(slave_dev); |
sfeldma@cumulusnetworks.com | 1d3ee88 | 2014-01-16 22:57:56 -0800 | [diff] [blame] | 37 | |
Jiri Pirko | df7dbcb | 2014-01-22 09:05:54 +0100 | [diff] [blame] | 38 | if (nla_put_u8(skb, IFLA_BOND_SLAVE_STATE, bond_slave_state(slave))) |
sfeldma@cumulusnetworks.com | 1d3ee88 | 2014-01-16 22:57:56 -0800 | [diff] [blame] | 39 | goto nla_put_failure; |
| 40 | |
Jiri Pirko | df7dbcb | 2014-01-22 09:05:54 +0100 | [diff] [blame] | 41 | if (nla_put_u8(skb, IFLA_BOND_SLAVE_MII_STATUS, slave->link)) |
sfeldma@cumulusnetworks.com | 1d3ee88 | 2014-01-16 22:57:56 -0800 | [diff] [blame] | 42 | goto nla_put_failure; |
| 43 | |
Jiri Pirko | df7dbcb | 2014-01-22 09:05:54 +0100 | [diff] [blame] | 44 | if (nla_put_u32(skb, IFLA_BOND_SLAVE_LINK_FAILURE_COUNT, |
sfeldma@cumulusnetworks.com | 1d3ee88 | 2014-01-16 22:57:56 -0800 | [diff] [blame] | 45 | slave->link_failure_count)) |
| 46 | goto nla_put_failure; |
| 47 | |
Jiri Pirko | df7dbcb | 2014-01-22 09:05:54 +0100 | [diff] [blame] | 48 | if (nla_put(skb, IFLA_BOND_SLAVE_PERM_HWADDR, |
sfeldma@cumulusnetworks.com | 1d3ee88 | 2014-01-16 22:57:56 -0800 | [diff] [blame] | 49 | slave_dev->addr_len, slave->perm_hwaddr)) |
| 50 | goto nla_put_failure; |
| 51 | |
Jiri Pirko | df7dbcb | 2014-01-22 09:05:54 +0100 | [diff] [blame] | 52 | if (nla_put_u16(skb, IFLA_BOND_SLAVE_QUEUE_ID, slave->queue_id)) |
sfeldma@cumulusnetworks.com | 1d3ee88 | 2014-01-16 22:57:56 -0800 | [diff] [blame] | 53 | goto nla_put_failure; |
| 54 | |
Veaceslav Falico | 0184409 | 2014-05-15 21:39:55 +0200 | [diff] [blame] | 55 | if (BOND_MODE(slave->bond) == BOND_MODE_8023AD) { |
Jiri Pirko | 3bad540 | 2014-01-22 09:05:56 +0100 | [diff] [blame] | 56 | const struct aggregator *agg; |
Nikolay Aleksandrov | 254cb6d | 2015-06-14 16:36:34 +0300 | [diff] [blame] | 57 | const struct port *ad_port; |
Jiri Pirko | 3bad540 | 2014-01-22 09:05:56 +0100 | [diff] [blame] | 58 | |
Nikolay Aleksandrov | 254cb6d | 2015-06-14 16:36:34 +0300 | [diff] [blame] | 59 | ad_port = &SLAVE_AD_INFO(slave)->port; |
dingtianhong | 3fdddd8 | 2014-05-12 15:08:43 +0800 | [diff] [blame] | 60 | agg = SLAVE_AD_INFO(slave)->port.aggregator; |
Nikolay Aleksandrov | 254cb6d | 2015-06-14 16:36:34 +0300 | [diff] [blame] | 61 | if (agg) { |
Jiri Pirko | df7dbcb | 2014-01-22 09:05:54 +0100 | [diff] [blame] | 62 | if (nla_put_u16(skb, IFLA_BOND_SLAVE_AD_AGGREGATOR_ID, |
sfeldma@cumulusnetworks.com | 1d3ee88 | 2014-01-16 22:57:56 -0800 | [diff] [blame] | 63 | agg->aggregator_identifier)) |
| 64 | goto nla_put_failure; |
Nikolay Aleksandrov | 254cb6d | 2015-06-14 16:36:34 +0300 | [diff] [blame] | 65 | if (nla_put_u8(skb, |
| 66 | IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE, |
| 67 | ad_port->actor_oper_port_state)) |
| 68 | goto nla_put_failure; |
Nikolay Aleksandrov | 46ea297 | 2015-06-14 16:36:35 +0300 | [diff] [blame] | 69 | if (nla_put_u16(skb, |
| 70 | IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE, |
| 71 | ad_port->partner_oper.port_state)) |
| 72 | goto nla_put_failure; |
Nikolay Aleksandrov | 254cb6d | 2015-06-14 16:36:34 +0300 | [diff] [blame] | 73 | } |
sfeldma@cumulusnetworks.com | 1d3ee88 | 2014-01-16 22:57:56 -0800 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | return 0; |
| 77 | |
| 78 | nla_put_failure: |
| 79 | return -EMSGSIZE; |
| 80 | } |
| 81 | |
Jiri Pirko | 90af231 | 2013-10-18 17:43:38 +0200 | [diff] [blame] | 82 | static const struct nla_policy bond_policy[IFLA_BOND_MAX + 1] = { |
| 83 | [IFLA_BOND_MODE] = { .type = NLA_U8 }, |
Jiri Pirko | ec76aa4 | 2013-10-18 17:43:39 +0200 | [diff] [blame] | 84 | [IFLA_BOND_ACTIVE_SLAVE] = { .type = NLA_U32 }, |
sfeldma@cumulusnetworks.com | eecdaa6 | 2013-12-12 14:09:55 -0800 | [diff] [blame] | 85 | [IFLA_BOND_MIIMON] = { .type = NLA_U32 }, |
sfeldma@cumulusnetworks.com | 25852e2 | 2013-12-12 14:10:02 -0800 | [diff] [blame] | 86 | [IFLA_BOND_UPDELAY] = { .type = NLA_U32 }, |
sfeldma@cumulusnetworks.com | c7461f9 | 2013-12-12 14:10:09 -0800 | [diff] [blame] | 87 | [IFLA_BOND_DOWNDELAY] = { .type = NLA_U32 }, |
sfeldma@cumulusnetworks.com | 9f53e14 | 2013-12-12 14:10:16 -0800 | [diff] [blame] | 88 | [IFLA_BOND_USE_CARRIER] = { .type = NLA_U8 }, |
sfeldma@cumulusnetworks.com | 06151db | 2013-12-12 14:10:24 -0800 | [diff] [blame] | 89 | [IFLA_BOND_ARP_INTERVAL] = { .type = NLA_U32 }, |
sfeldma@cumulusnetworks.com | 7f28fa1 | 2013-12-12 14:10:31 -0800 | [diff] [blame] | 90 | [IFLA_BOND_ARP_IP_TARGET] = { .type = NLA_NESTED }, |
sfeldma@cumulusnetworks.com | 29c4948 | 2013-12-12 14:10:38 -0800 | [diff] [blame] | 91 | [IFLA_BOND_ARP_VALIDATE] = { .type = NLA_U32 }, |
sfeldma@cumulusnetworks.com | d5c8425 | 2013-12-12 14:10:45 -0800 | [diff] [blame] | 92 | [IFLA_BOND_ARP_ALL_TARGETS] = { .type = NLA_U32 }, |
sfeldma@cumulusnetworks.com | 0a98a0d | 2013-12-15 16:41:51 -0800 | [diff] [blame] | 93 | [IFLA_BOND_PRIMARY] = { .type = NLA_U32 }, |
sfeldma@cumulusnetworks.com | 8a41ae4 | 2013-12-15 16:41:58 -0800 | [diff] [blame] | 94 | [IFLA_BOND_PRIMARY_RESELECT] = { .type = NLA_U8 }, |
sfeldma@cumulusnetworks.com | 8990197 | 2013-12-15 16:42:05 -0800 | [diff] [blame] | 95 | [IFLA_BOND_FAIL_OVER_MAC] = { .type = NLA_U8 }, |
sfeldma@cumulusnetworks.com | f70161c | 2013-12-15 16:42:12 -0800 | [diff] [blame] | 96 | [IFLA_BOND_XMIT_HASH_POLICY] = { .type = NLA_U8 }, |
sfeldma@cumulusnetworks.com | d8838de7 | 2013-12-15 16:42:19 -0800 | [diff] [blame] | 97 | [IFLA_BOND_RESEND_IGMP] = { .type = NLA_U32 }, |
sfeldma@cumulusnetworks.com | 2c9839c | 2013-12-17 21:30:09 -0800 | [diff] [blame] | 98 | [IFLA_BOND_NUM_PEER_NOTIF] = { .type = NLA_U8 }, |
sfeldma@cumulusnetworks.com | 1cc0b1e | 2013-12-17 21:30:16 -0800 | [diff] [blame] | 99 | [IFLA_BOND_ALL_SLAVES_ACTIVE] = { .type = NLA_U8 }, |
sfeldma@cumulusnetworks.com | 7d10100 | 2013-12-17 21:30:23 -0800 | [diff] [blame] | 100 | [IFLA_BOND_MIN_LINKS] = { .type = NLA_U32 }, |
sfeldma@cumulusnetworks.com | 8d836d09 | 2013-12-17 21:30:30 -0800 | [diff] [blame] | 101 | [IFLA_BOND_LP_INTERVAL] = { .type = NLA_U32 }, |
sfeldma@cumulusnetworks.com | c13ab3f | 2013-12-17 21:30:37 -0800 | [diff] [blame] | 102 | [IFLA_BOND_PACKETS_PER_SLAVE] = { .type = NLA_U32 }, |
Hangbin Liu | 3a755cd | 2021-08-02 11:02:19 +0800 | [diff] [blame] | 103 | [IFLA_BOND_AD_LACP_ACTIVE] = { .type = NLA_U8 }, |
sfeldma@cumulusnetworks.com | 998e40bb | 2014-01-03 14:18:41 -0800 | [diff] [blame] | 104 | [IFLA_BOND_AD_LACP_RATE] = { .type = NLA_U8 }, |
sfeldma@cumulusnetworks.com | ec029fa | 2014-01-03 14:18:49 -0800 | [diff] [blame] | 105 | [IFLA_BOND_AD_SELECT] = { .type = NLA_U8 }, |
sfeldma@cumulusnetworks.com | 4ee7ac7 | 2014-01-03 14:18:56 -0800 | [diff] [blame] | 106 | [IFLA_BOND_AD_INFO] = { .type = NLA_NESTED }, |
Andy Gospodarek | 171a42c | 2015-05-09 00:01:58 -0700 | [diff] [blame] | 107 | [IFLA_BOND_AD_ACTOR_SYS_PRIO] = { .type = NLA_U16 }, |
| 108 | [IFLA_BOND_AD_USER_PORT_KEY] = { .type = NLA_U16 }, |
| 109 | [IFLA_BOND_AD_ACTOR_SYSTEM] = { .type = NLA_BINARY, |
| 110 | .len = ETH_ALEN }, |
Nikolay Aleksandrov | 0f7bffd | 2015-07-31 16:49:43 +0200 | [diff] [blame] | 111 | [IFLA_BOND_TLB_DYNAMIC_LB] = { .type = NLA_U8 }, |
Vincent Bernat | 07a4dde | 2019-07-02 19:43:54 +0200 | [diff] [blame] | 112 | [IFLA_BOND_PEER_NOTIF_DELAY] = { .type = NLA_U32 }, |
Jiri Pirko | 90af231 | 2013-10-18 17:43:38 +0200 | [diff] [blame] | 113 | }; |
| 114 | |
Jiri Pirko | cea6aeb | 2014-09-05 11:36:34 +0200 | [diff] [blame] | 115 | static const struct nla_policy bond_slave_policy[IFLA_BOND_SLAVE_MAX + 1] = { |
| 116 | [IFLA_BOND_SLAVE_QUEUE_ID] = { .type = NLA_U16 }, |
| 117 | }; |
| 118 | |
Matthias Schiffer | a8b8a889 | 2017-06-25 23:56:01 +0200 | [diff] [blame] | 119 | static int bond_validate(struct nlattr *tb[], struct nlattr *data[], |
| 120 | struct netlink_ext_ack *extack) |
Jiri Pirko | 0a2a78c | 2013-10-18 17:43:33 +0200 | [diff] [blame] | 121 | { |
| 122 | if (tb[IFLA_ADDRESS]) { |
| 123 | if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) |
| 124 | return -EINVAL; |
| 125 | if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) |
| 126 | return -EADDRNOTAVAIL; |
| 127 | } |
| 128 | return 0; |
| 129 | } |
| 130 | |
Nikolay Aleksandrov | 0f23124a | 2014-08-27 16:06:46 +0200 | [diff] [blame] | 131 | static int bond_slave_changelink(struct net_device *bond_dev, |
| 132 | struct net_device *slave_dev, |
Matthias Schiffer | 17dd0ec | 2017-06-25 23:56:02 +0200 | [diff] [blame] | 133 | struct nlattr *tb[], struct nlattr *data[], |
| 134 | struct netlink_ext_ack *extack) |
Nikolay Aleksandrov | 0f23124a | 2014-08-27 16:06:46 +0200 | [diff] [blame] | 135 | { |
| 136 | struct bonding *bond = netdev_priv(bond_dev); |
| 137 | struct bond_opt_value newval; |
| 138 | int err; |
| 139 | |
| 140 | if (!data) |
| 141 | return 0; |
| 142 | |
| 143 | if (data[IFLA_BOND_SLAVE_QUEUE_ID]) { |
| 144 | u16 queue_id = nla_get_u16(data[IFLA_BOND_SLAVE_QUEUE_ID]); |
| 145 | char queue_id_str[IFNAMSIZ + 7]; |
| 146 | |
| 147 | /* queue_id option setting expects slave_name:queue_id */ |
| 148 | snprintf(queue_id_str, sizeof(queue_id_str), "%s:%u\n", |
| 149 | slave_dev->name, queue_id); |
| 150 | bond_opt_initstr(&newval, queue_id_str); |
| 151 | err = __bond_opt_set(bond, BOND_OPT_QUEUE_ID, &newval); |
| 152 | if (err) |
| 153 | return err; |
| 154 | } |
| 155 | |
| 156 | return 0; |
| 157 | } |
| 158 | |
Matthias Schiffer | ad744b2 | 2017-06-25 23:56:00 +0200 | [diff] [blame] | 159 | static int bond_changelink(struct net_device *bond_dev, struct nlattr *tb[], |
| 160 | struct nlattr *data[], |
| 161 | struct netlink_ext_ack *extack) |
Jiri Pirko | 90af231 | 2013-10-18 17:43:38 +0200 | [diff] [blame] | 162 | { |
| 163 | struct bonding *bond = netdev_priv(bond_dev); |
Nikolay Aleksandrov | 2b3798d | 2014-01-22 14:53:17 +0100 | [diff] [blame] | 164 | struct bond_opt_value newval; |
sfeldma@cumulusnetworks.com | 06151db | 2013-12-12 14:10:24 -0800 | [diff] [blame] | 165 | int miimon = 0; |
Jiri Pirko | 90af231 | 2013-10-18 17:43:38 +0200 | [diff] [blame] | 166 | int err; |
| 167 | |
sfeldma@cumulusnetworks.com | eecdaa6 | 2013-12-12 14:09:55 -0800 | [diff] [blame] | 168 | if (!data) |
| 169 | return 0; |
| 170 | |
| 171 | if (data[IFLA_BOND_MODE]) { |
Jiri Pirko | 90af231 | 2013-10-18 17:43:38 +0200 | [diff] [blame] | 172 | int mode = nla_get_u8(data[IFLA_BOND_MODE]); |
| 173 | |
Nikolay Aleksandrov | 2b3798d | 2014-01-22 14:53:17 +0100 | [diff] [blame] | 174 | bond_opt_initval(&newval, mode); |
| 175 | err = __bond_opt_set(bond, BOND_OPT_MODE, &newval); |
Jiri Pirko | 90af231 | 2013-10-18 17:43:38 +0200 | [diff] [blame] | 176 | if (err) |
| 177 | return err; |
| 178 | } |
sfeldma@cumulusnetworks.com | eecdaa6 | 2013-12-12 14:09:55 -0800 | [diff] [blame] | 179 | if (data[IFLA_BOND_ACTIVE_SLAVE]) { |
Jiri Pirko | ec76aa4 | 2013-10-18 17:43:39 +0200 | [diff] [blame] | 180 | int ifindex = nla_get_u32(data[IFLA_BOND_ACTIVE_SLAVE]); |
| 181 | struct net_device *slave_dev; |
Nikolay Aleksandrov | d1fbd3ed | 2014-01-22 14:53:35 +0100 | [diff] [blame] | 182 | char *active_slave = ""; |
Jiri Pirko | ec76aa4 | 2013-10-18 17:43:39 +0200 | [diff] [blame] | 183 | |
Nikolay Aleksandrov | d1fbd3ed | 2014-01-22 14:53:35 +0100 | [diff] [blame] | 184 | if (ifindex != 0) { |
Jiri Pirko | ec76aa4 | 2013-10-18 17:43:39 +0200 | [diff] [blame] | 185 | slave_dev = __dev_get_by_index(dev_net(bond_dev), |
| 186 | ifindex); |
| 187 | if (!slave_dev) |
| 188 | return -ENODEV; |
Nikolay Aleksandrov | d1fbd3ed | 2014-01-22 14:53:35 +0100 | [diff] [blame] | 189 | active_slave = slave_dev->name; |
Jiri Pirko | ec76aa4 | 2013-10-18 17:43:39 +0200 | [diff] [blame] | 190 | } |
Nikolay Aleksandrov | d1fbd3ed | 2014-01-22 14:53:35 +0100 | [diff] [blame] | 191 | bond_opt_initstr(&newval, active_slave); |
| 192 | err = __bond_opt_set(bond, BOND_OPT_ACTIVE_SLAVE, &newval); |
Jiri Pirko | ec76aa4 | 2013-10-18 17:43:39 +0200 | [diff] [blame] | 193 | if (err) |
| 194 | return err; |
| 195 | } |
sfeldma@cumulusnetworks.com | eecdaa6 | 2013-12-12 14:09:55 -0800 | [diff] [blame] | 196 | if (data[IFLA_BOND_MIIMON]) { |
sfeldma@cumulusnetworks.com | 06151db | 2013-12-12 14:10:24 -0800 | [diff] [blame] | 197 | miimon = nla_get_u32(data[IFLA_BOND_MIIMON]); |
sfeldma@cumulusnetworks.com | eecdaa6 | 2013-12-12 14:09:55 -0800 | [diff] [blame] | 198 | |
Nikolay Aleksandrov | b98d9c6 | 2014-01-22 14:53:31 +0100 | [diff] [blame] | 199 | bond_opt_initval(&newval, miimon); |
| 200 | err = __bond_opt_set(bond, BOND_OPT_MIIMON, &newval); |
sfeldma@cumulusnetworks.com | eecdaa6 | 2013-12-12 14:09:55 -0800 | [diff] [blame] | 201 | if (err) |
| 202 | return err; |
| 203 | } |
sfeldma@cumulusnetworks.com | 25852e2 | 2013-12-12 14:10:02 -0800 | [diff] [blame] | 204 | if (data[IFLA_BOND_UPDELAY]) { |
| 205 | int updelay = nla_get_u32(data[IFLA_BOND_UPDELAY]); |
| 206 | |
Nikolay Aleksandrov | e499461 | 2014-01-22 14:53:26 +0100 | [diff] [blame] | 207 | bond_opt_initval(&newval, updelay); |
| 208 | err = __bond_opt_set(bond, BOND_OPT_UPDELAY, &newval); |
sfeldma@cumulusnetworks.com | 25852e2 | 2013-12-12 14:10:02 -0800 | [diff] [blame] | 209 | if (err) |
| 210 | return err; |
| 211 | } |
sfeldma@cumulusnetworks.com | c7461f9 | 2013-12-12 14:10:09 -0800 | [diff] [blame] | 212 | if (data[IFLA_BOND_DOWNDELAY]) { |
| 213 | int downdelay = nla_get_u32(data[IFLA_BOND_DOWNDELAY]); |
| 214 | |
Nikolay Aleksandrov | 25a9b54 | 2014-01-22 14:53:25 +0100 | [diff] [blame] | 215 | bond_opt_initval(&newval, downdelay); |
| 216 | err = __bond_opt_set(bond, BOND_OPT_DOWNDELAY, &newval); |
sfeldma@cumulusnetworks.com | c7461f9 | 2013-12-12 14:10:09 -0800 | [diff] [blame] | 217 | if (err) |
| 218 | return err; |
| 219 | } |
Vincent Bernat | 07a4dde | 2019-07-02 19:43:54 +0200 | [diff] [blame] | 220 | if (data[IFLA_BOND_PEER_NOTIF_DELAY]) { |
| 221 | int delay = nla_get_u32(data[IFLA_BOND_PEER_NOTIF_DELAY]); |
| 222 | |
| 223 | bond_opt_initval(&newval, delay); |
| 224 | err = __bond_opt_set(bond, BOND_OPT_PEER_NOTIF_DELAY, &newval); |
| 225 | if (err) |
| 226 | return err; |
| 227 | } |
sfeldma@cumulusnetworks.com | 9f53e14 | 2013-12-12 14:10:16 -0800 | [diff] [blame] | 228 | if (data[IFLA_BOND_USE_CARRIER]) { |
| 229 | int use_carrier = nla_get_u8(data[IFLA_BOND_USE_CARRIER]); |
| 230 | |
Nikolay Aleksandrov | 0fff0608 | 2014-01-22 14:53:34 +0100 | [diff] [blame] | 231 | bond_opt_initval(&newval, use_carrier); |
| 232 | err = __bond_opt_set(bond, BOND_OPT_USE_CARRIER, &newval); |
sfeldma@cumulusnetworks.com | 9f53e14 | 2013-12-12 14:10:16 -0800 | [diff] [blame] | 233 | if (err) |
| 234 | return err; |
| 235 | } |
sfeldma@cumulusnetworks.com | 06151db | 2013-12-12 14:10:24 -0800 | [diff] [blame] | 236 | if (data[IFLA_BOND_ARP_INTERVAL]) { |
| 237 | int arp_interval = nla_get_u32(data[IFLA_BOND_ARP_INTERVAL]); |
| 238 | |
| 239 | if (arp_interval && miimon) { |
Veaceslav Falico | a5f2454 | 2014-07-15 19:36:05 +0200 | [diff] [blame] | 240 | netdev_err(bond->dev, "ARP monitoring cannot be used with MII monitoring\n"); |
sfeldma@cumulusnetworks.com | 06151db | 2013-12-12 14:10:24 -0800 | [diff] [blame] | 241 | return -EINVAL; |
| 242 | } |
| 243 | |
Nikolay Aleksandrov | 7bdb04e | 2014-01-22 14:53:23 +0100 | [diff] [blame] | 244 | bond_opt_initval(&newval, arp_interval); |
| 245 | err = __bond_opt_set(bond, BOND_OPT_ARP_INTERVAL, &newval); |
sfeldma@cumulusnetworks.com | 06151db | 2013-12-12 14:10:24 -0800 | [diff] [blame] | 246 | if (err) |
| 247 | return err; |
| 248 | } |
sfeldma@cumulusnetworks.com | 7f28fa1 | 2013-12-12 14:10:31 -0800 | [diff] [blame] | 249 | if (data[IFLA_BOND_ARP_IP_TARGET]) { |
sfeldma@cumulusnetworks.com | 7f28fa1 | 2013-12-12 14:10:31 -0800 | [diff] [blame] | 250 | struct nlattr *attr; |
| 251 | int i = 0, rem; |
| 252 | |
Nikolay Aleksandrov | 4fb0ef58 | 2014-01-22 14:53:24 +0100 | [diff] [blame] | 253 | bond_option_arp_ip_targets_clear(bond); |
sfeldma@cumulusnetworks.com | 7f28fa1 | 2013-12-12 14:10:31 -0800 | [diff] [blame] | 254 | nla_for_each_nested(attr, data[IFLA_BOND_ARP_IP_TARGET], rem) { |
Thomas Graf | f6c6fda | 2014-11-27 00:22:33 +0100 | [diff] [blame] | 255 | __be32 target; |
| 256 | |
| 257 | if (nla_len(attr) < sizeof(target)) |
| 258 | return -EINVAL; |
| 259 | |
| 260 | target = nla_get_be32(attr); |
sfeldma@cumulusnetworks.com | 7f28fa1 | 2013-12-12 14:10:31 -0800 | [diff] [blame] | 261 | |
stephen hemminger | a19a7ec | 2014-03-10 09:48:38 -0700 | [diff] [blame] | 262 | bond_opt_initval(&newval, (__force u64)target); |
Nikolay Aleksandrov | 4fb0ef58 | 2014-01-22 14:53:24 +0100 | [diff] [blame] | 263 | err = __bond_opt_set(bond, BOND_OPT_ARP_TARGETS, |
| 264 | &newval); |
| 265 | if (err) |
| 266 | break; |
| 267 | i++; |
| 268 | } |
| 269 | if (i == 0 && bond->params.arp_interval) |
Veaceslav Falico | a5f2454 | 2014-07-15 19:36:05 +0200 | [diff] [blame] | 270 | netdev_warn(bond->dev, "Removing last arp target with arp_interval on\n"); |
sfeldma@cumulusnetworks.com | 7f28fa1 | 2013-12-12 14:10:31 -0800 | [diff] [blame] | 271 | if (err) |
| 272 | return err; |
| 273 | } |
sfeldma@cumulusnetworks.com | 29c4948 | 2013-12-12 14:10:38 -0800 | [diff] [blame] | 274 | if (data[IFLA_BOND_ARP_VALIDATE]) { |
| 275 | int arp_validate = nla_get_u32(data[IFLA_BOND_ARP_VALIDATE]); |
| 276 | |
| 277 | if (arp_validate && miimon) { |
Veaceslav Falico | a5f2454 | 2014-07-15 19:36:05 +0200 | [diff] [blame] | 278 | netdev_err(bond->dev, "ARP validating cannot be used with MII monitoring\n"); |
sfeldma@cumulusnetworks.com | 29c4948 | 2013-12-12 14:10:38 -0800 | [diff] [blame] | 279 | return -EINVAL; |
| 280 | } |
| 281 | |
Nikolay Aleksandrov | 1622888 | 2014-01-22 14:53:20 +0100 | [diff] [blame] | 282 | bond_opt_initval(&newval, arp_validate); |
| 283 | err = __bond_opt_set(bond, BOND_OPT_ARP_VALIDATE, &newval); |
sfeldma@cumulusnetworks.com | 29c4948 | 2013-12-12 14:10:38 -0800 | [diff] [blame] | 284 | if (err) |
| 285 | return err; |
| 286 | } |
sfeldma@cumulusnetworks.com | d5c8425 | 2013-12-12 14:10:45 -0800 | [diff] [blame] | 287 | if (data[IFLA_BOND_ARP_ALL_TARGETS]) { |
| 288 | int arp_all_targets = |
| 289 | nla_get_u32(data[IFLA_BOND_ARP_ALL_TARGETS]); |
| 290 | |
Nikolay Aleksandrov | edf36b2 | 2014-01-22 14:53:21 +0100 | [diff] [blame] | 291 | bond_opt_initval(&newval, arp_all_targets); |
| 292 | err = __bond_opt_set(bond, BOND_OPT_ARP_ALL_TARGETS, &newval); |
sfeldma@cumulusnetworks.com | d5c8425 | 2013-12-12 14:10:45 -0800 | [diff] [blame] | 293 | if (err) |
| 294 | return err; |
| 295 | } |
sfeldma@cumulusnetworks.com | 0a98a0d | 2013-12-15 16:41:51 -0800 | [diff] [blame] | 296 | if (data[IFLA_BOND_PRIMARY]) { |
| 297 | int ifindex = nla_get_u32(data[IFLA_BOND_PRIMARY]); |
| 298 | struct net_device *dev; |
| 299 | char *primary = ""; |
| 300 | |
| 301 | dev = __dev_get_by_index(dev_net(bond_dev), ifindex); |
| 302 | if (dev) |
| 303 | primary = dev->name; |
| 304 | |
Nikolay Aleksandrov | 180222f | 2014-01-22 14:53:32 +0100 | [diff] [blame] | 305 | bond_opt_initstr(&newval, primary); |
| 306 | err = __bond_opt_set(bond, BOND_OPT_PRIMARY, &newval); |
sfeldma@cumulusnetworks.com | 0a98a0d | 2013-12-15 16:41:51 -0800 | [diff] [blame] | 307 | if (err) |
| 308 | return err; |
| 309 | } |
sfeldma@cumulusnetworks.com | 8a41ae4 | 2013-12-15 16:41:58 -0800 | [diff] [blame] | 310 | if (data[IFLA_BOND_PRIMARY_RESELECT]) { |
| 311 | int primary_reselect = |
| 312 | nla_get_u8(data[IFLA_BOND_PRIMARY_RESELECT]); |
| 313 | |
Nikolay Aleksandrov | 388d3a6 | 2014-01-22 14:53:33 +0100 | [diff] [blame] | 314 | bond_opt_initval(&newval, primary_reselect); |
| 315 | err = __bond_opt_set(bond, BOND_OPT_PRIMARY_RESELECT, &newval); |
sfeldma@cumulusnetworks.com | 8a41ae4 | 2013-12-15 16:41:58 -0800 | [diff] [blame] | 316 | if (err) |
| 317 | return err; |
| 318 | } |
sfeldma@cumulusnetworks.com | 8990197 | 2013-12-15 16:42:05 -0800 | [diff] [blame] | 319 | if (data[IFLA_BOND_FAIL_OVER_MAC]) { |
| 320 | int fail_over_mac = |
| 321 | nla_get_u8(data[IFLA_BOND_FAIL_OVER_MAC]); |
| 322 | |
Nikolay Aleksandrov | 1df6b6a | 2014-01-22 14:53:22 +0100 | [diff] [blame] | 323 | bond_opt_initval(&newval, fail_over_mac); |
| 324 | err = __bond_opt_set(bond, BOND_OPT_FAIL_OVER_MAC, &newval); |
sfeldma@cumulusnetworks.com | 8990197 | 2013-12-15 16:42:05 -0800 | [diff] [blame] | 325 | if (err) |
| 326 | return err; |
| 327 | } |
sfeldma@cumulusnetworks.com | f70161c | 2013-12-15 16:42:12 -0800 | [diff] [blame] | 328 | if (data[IFLA_BOND_XMIT_HASH_POLICY]) { |
| 329 | int xmit_hash_policy = |
| 330 | nla_get_u8(data[IFLA_BOND_XMIT_HASH_POLICY]); |
| 331 | |
Nikolay Aleksandrov | a4b32ce | 2014-01-22 14:53:19 +0100 | [diff] [blame] | 332 | bond_opt_initval(&newval, xmit_hash_policy); |
| 333 | err = __bond_opt_set(bond, BOND_OPT_XMIT_HASH, &newval); |
sfeldma@cumulusnetworks.com | f70161c | 2013-12-15 16:42:12 -0800 | [diff] [blame] | 334 | if (err) |
| 335 | return err; |
| 336 | } |
sfeldma@cumulusnetworks.com | d8838de7 | 2013-12-15 16:42:19 -0800 | [diff] [blame] | 337 | if (data[IFLA_BOND_RESEND_IGMP]) { |
| 338 | int resend_igmp = |
| 339 | nla_get_u32(data[IFLA_BOND_RESEND_IGMP]); |
| 340 | |
Nikolay Aleksandrov | 105c8fb | 2014-01-22 14:53:38 +0100 | [diff] [blame] | 341 | bond_opt_initval(&newval, resend_igmp); |
| 342 | err = __bond_opt_set(bond, BOND_OPT_RESEND_IGMP, &newval); |
sfeldma@cumulusnetworks.com | d8838de7 | 2013-12-15 16:42:19 -0800 | [diff] [blame] | 343 | if (err) |
| 344 | return err; |
| 345 | } |
sfeldma@cumulusnetworks.com | 2c9839c | 2013-12-17 21:30:09 -0800 | [diff] [blame] | 346 | if (data[IFLA_BOND_NUM_PEER_NOTIF]) { |
| 347 | int num_peer_notif = |
| 348 | nla_get_u8(data[IFLA_BOND_NUM_PEER_NOTIF]); |
| 349 | |
Nikolay Aleksandrov | ef56bec | 2014-01-22 14:53:30 +0100 | [diff] [blame] | 350 | bond_opt_initval(&newval, num_peer_notif); |
| 351 | err = __bond_opt_set(bond, BOND_OPT_NUM_PEER_NOTIF, &newval); |
sfeldma@cumulusnetworks.com | 2c9839c | 2013-12-17 21:30:09 -0800 | [diff] [blame] | 352 | if (err) |
| 353 | return err; |
| 354 | } |
sfeldma@cumulusnetworks.com | 1cc0b1e | 2013-12-17 21:30:16 -0800 | [diff] [blame] | 355 | if (data[IFLA_BOND_ALL_SLAVES_ACTIVE]) { |
| 356 | int all_slaves_active = |
| 357 | nla_get_u8(data[IFLA_BOND_ALL_SLAVES_ACTIVE]); |
| 358 | |
Nikolay Aleksandrov | 3df0116 | 2014-01-22 14:53:37 +0100 | [diff] [blame] | 359 | bond_opt_initval(&newval, all_slaves_active); |
| 360 | err = __bond_opt_set(bond, BOND_OPT_ALL_SLAVES_ACTIVE, &newval); |
sfeldma@cumulusnetworks.com | 1cc0b1e | 2013-12-17 21:30:16 -0800 | [diff] [blame] | 361 | if (err) |
| 362 | return err; |
| 363 | } |
sfeldma@cumulusnetworks.com | 7d10100 | 2013-12-17 21:30:23 -0800 | [diff] [blame] | 364 | if (data[IFLA_BOND_MIN_LINKS]) { |
| 365 | int min_links = |
| 366 | nla_get_u32(data[IFLA_BOND_MIN_LINKS]); |
| 367 | |
Nikolay Aleksandrov | 633ddc9 | 2014-01-22 14:53:28 +0100 | [diff] [blame] | 368 | bond_opt_initval(&newval, min_links); |
| 369 | err = __bond_opt_set(bond, BOND_OPT_MINLINKS, &newval); |
sfeldma@cumulusnetworks.com | 7d10100 | 2013-12-17 21:30:23 -0800 | [diff] [blame] | 370 | if (err) |
| 371 | return err; |
| 372 | } |
sfeldma@cumulusnetworks.com | 8d836d09 | 2013-12-17 21:30:30 -0800 | [diff] [blame] | 373 | if (data[IFLA_BOND_LP_INTERVAL]) { |
| 374 | int lp_interval = |
| 375 | nla_get_u32(data[IFLA_BOND_LP_INTERVAL]); |
| 376 | |
Nikolay Aleksandrov | 4325b37 | 2014-01-22 14:53:39 +0100 | [diff] [blame] | 377 | bond_opt_initval(&newval, lp_interval); |
| 378 | err = __bond_opt_set(bond, BOND_OPT_LP_INTERVAL, &newval); |
sfeldma@cumulusnetworks.com | 8d836d09 | 2013-12-17 21:30:30 -0800 | [diff] [blame] | 379 | if (err) |
| 380 | return err; |
| 381 | } |
sfeldma@cumulusnetworks.com | c13ab3f | 2013-12-17 21:30:37 -0800 | [diff] [blame] | 382 | if (data[IFLA_BOND_PACKETS_PER_SLAVE]) { |
| 383 | int packets_per_slave = |
| 384 | nla_get_u32(data[IFLA_BOND_PACKETS_PER_SLAVE]); |
| 385 | |
Nikolay Aleksandrov | aa59d85 | 2014-01-22 14:53:18 +0100 | [diff] [blame] | 386 | bond_opt_initval(&newval, packets_per_slave); |
| 387 | err = __bond_opt_set(bond, BOND_OPT_PACKETS_PER_SLAVE, &newval); |
sfeldma@cumulusnetworks.com | c13ab3f | 2013-12-17 21:30:37 -0800 | [diff] [blame] | 388 | if (err) |
| 389 | return err; |
| 390 | } |
Hangbin Liu | 3a755cd | 2021-08-02 11:02:19 +0800 | [diff] [blame] | 391 | |
| 392 | if (data[IFLA_BOND_AD_LACP_ACTIVE]) { |
| 393 | int lacp_active = nla_get_u8(data[IFLA_BOND_AD_LACP_ACTIVE]); |
| 394 | |
| 395 | bond_opt_initval(&newval, lacp_active); |
| 396 | err = __bond_opt_set(bond, BOND_OPT_LACP_ACTIVE, &newval); |
| 397 | if (err) |
| 398 | return err; |
| 399 | } |
| 400 | |
sfeldma@cumulusnetworks.com | 998e40bb | 2014-01-03 14:18:41 -0800 | [diff] [blame] | 401 | if (data[IFLA_BOND_AD_LACP_RATE]) { |
| 402 | int lacp_rate = |
| 403 | nla_get_u8(data[IFLA_BOND_AD_LACP_RATE]); |
| 404 | |
Nikolay Aleksandrov | d3131de | 2014-01-22 14:53:27 +0100 | [diff] [blame] | 405 | bond_opt_initval(&newval, lacp_rate); |
| 406 | err = __bond_opt_set(bond, BOND_OPT_LACP_RATE, &newval); |
sfeldma@cumulusnetworks.com | 998e40bb | 2014-01-03 14:18:41 -0800 | [diff] [blame] | 407 | if (err) |
| 408 | return err; |
| 409 | } |
sfeldma@cumulusnetworks.com | ec029fa | 2014-01-03 14:18:49 -0800 | [diff] [blame] | 410 | if (data[IFLA_BOND_AD_SELECT]) { |
| 411 | int ad_select = |
| 412 | nla_get_u8(data[IFLA_BOND_AD_SELECT]); |
| 413 | |
Nikolay Aleksandrov | 9e5f5ee | 2014-01-22 14:53:29 +0100 | [diff] [blame] | 414 | bond_opt_initval(&newval, ad_select); |
| 415 | err = __bond_opt_set(bond, BOND_OPT_AD_SELECT, &newval); |
sfeldma@cumulusnetworks.com | ec029fa | 2014-01-03 14:18:49 -0800 | [diff] [blame] | 416 | if (err) |
| 417 | return err; |
| 418 | } |
Andy Gospodarek | 171a42c | 2015-05-09 00:01:58 -0700 | [diff] [blame] | 419 | if (data[IFLA_BOND_AD_ACTOR_SYS_PRIO]) { |
| 420 | int actor_sys_prio = |
| 421 | nla_get_u16(data[IFLA_BOND_AD_ACTOR_SYS_PRIO]); |
| 422 | |
| 423 | bond_opt_initval(&newval, actor_sys_prio); |
| 424 | err = __bond_opt_set(bond, BOND_OPT_AD_ACTOR_SYS_PRIO, &newval); |
| 425 | if (err) |
| 426 | return err; |
| 427 | } |
Andy Gospodarek | 171a42c | 2015-05-09 00:01:58 -0700 | [diff] [blame] | 428 | if (data[IFLA_BOND_AD_USER_PORT_KEY]) { |
| 429 | int port_key = |
| 430 | nla_get_u16(data[IFLA_BOND_AD_USER_PORT_KEY]); |
| 431 | |
| 432 | bond_opt_initval(&newval, port_key); |
| 433 | err = __bond_opt_set(bond, BOND_OPT_AD_USER_PORT_KEY, &newval); |
| 434 | if (err) |
| 435 | return err; |
| 436 | } |
Andy Gospodarek | 171a42c | 2015-05-09 00:01:58 -0700 | [diff] [blame] | 437 | if (data[IFLA_BOND_AD_ACTOR_SYSTEM]) { |
| 438 | if (nla_len(data[IFLA_BOND_AD_ACTOR_SYSTEM]) != ETH_ALEN) |
| 439 | return -EINVAL; |
| 440 | |
| 441 | bond_opt_initval(&newval, |
Xin Long | 5eb3d22 | 2017-11-26 21:12:09 +0800 | [diff] [blame] | 442 | nla_get_u64(data[IFLA_BOND_AD_ACTOR_SYSTEM])); |
Andy Gospodarek | 171a42c | 2015-05-09 00:01:58 -0700 | [diff] [blame] | 443 | err = __bond_opt_set(bond, BOND_OPT_AD_ACTOR_SYSTEM, &newval); |
| 444 | if (err) |
| 445 | return err; |
| 446 | } |
Nikolay Aleksandrov | 0f7bffd | 2015-07-31 16:49:43 +0200 | [diff] [blame] | 447 | if (data[IFLA_BOND_TLB_DYNAMIC_LB]) { |
| 448 | int dynamic_lb = nla_get_u8(data[IFLA_BOND_TLB_DYNAMIC_LB]); |
| 449 | |
| 450 | bond_opt_initval(&newval, dynamic_lb); |
| 451 | err = __bond_opt_set(bond, BOND_OPT_TLB_DYNAMIC_LB, &newval); |
| 452 | if (err) |
| 453 | return err; |
| 454 | } |
| 455 | |
Jiri Pirko | 90af231 | 2013-10-18 17:43:38 +0200 | [diff] [blame] | 456 | return 0; |
| 457 | } |
| 458 | |
| 459 | static int bond_newlink(struct net *src_net, struct net_device *bond_dev, |
Matthias Schiffer | 7a3f4a1 | 2017-06-25 23:55:59 +0200 | [diff] [blame] | 460 | struct nlattr *tb[], struct nlattr *data[], |
| 461 | struct netlink_ext_ack *extack) |
Jiri Pirko | 90af231 | 2013-10-18 17:43:38 +0200 | [diff] [blame] | 462 | { |
| 463 | int err; |
| 464 | |
Matthias Schiffer | ad744b2 | 2017-06-25 23:56:00 +0200 | [diff] [blame] | 465 | err = bond_changelink(bond_dev, tb, data, extack); |
Jiri Pirko | 90af231 | 2013-10-18 17:43:38 +0200 | [diff] [blame] | 466 | if (err < 0) |
| 467 | return err; |
| 468 | |
Beniamino Galvani | 005db31 | 2016-07-13 18:25:08 +0200 | [diff] [blame] | 469 | err = register_netdevice(bond_dev); |
Mahesh Bandewar | ea8ffc0 | 2017-04-20 12:49:24 -0700 | [diff] [blame] | 470 | if (!err) { |
| 471 | struct bonding *bond = netdev_priv(bond_dev); |
| 472 | |
Cong Wang | c75d1d5 | 2020-07-22 16:31:54 -0700 | [diff] [blame] | 473 | netif_carrier_off(bond_dev); |
Mahesh Bandewar | ea8ffc0 | 2017-04-20 12:49:24 -0700 | [diff] [blame] | 474 | bond_work_init_all(bond); |
| 475 | } |
Beniamino Galvani | 005db31 | 2016-07-13 18:25:08 +0200 | [diff] [blame] | 476 | |
| 477 | return err; |
Jiri Pirko | 90af231 | 2013-10-18 17:43:38 +0200 | [diff] [blame] | 478 | } |
| 479 | |
| 480 | static size_t bond_get_size(const struct net_device *bond_dev) |
| 481 | { |
Dan Carpenter | e139862 | 2013-11-01 13:18:44 +0300 | [diff] [blame] | 482 | return nla_total_size(sizeof(u8)) + /* IFLA_BOND_MODE */ |
sfeldma@cumulusnetworks.com | eecdaa6 | 2013-12-12 14:09:55 -0800 | [diff] [blame] | 483 | nla_total_size(sizeof(u32)) + /* IFLA_BOND_ACTIVE_SLAVE */ |
| 484 | nla_total_size(sizeof(u32)) + /* IFLA_BOND_MIIMON */ |
sfeldma@cumulusnetworks.com | 25852e2 | 2013-12-12 14:10:02 -0800 | [diff] [blame] | 485 | nla_total_size(sizeof(u32)) + /* IFLA_BOND_UPDELAY */ |
sfeldma@cumulusnetworks.com | c7461f9 | 2013-12-12 14:10:09 -0800 | [diff] [blame] | 486 | nla_total_size(sizeof(u32)) + /* IFLA_BOND_DOWNDELAY */ |
sfeldma@cumulusnetworks.com | 9f53e14 | 2013-12-12 14:10:16 -0800 | [diff] [blame] | 487 | nla_total_size(sizeof(u8)) + /* IFLA_BOND_USE_CARRIER */ |
sfeldma@cumulusnetworks.com | 06151db | 2013-12-12 14:10:24 -0800 | [diff] [blame] | 488 | nla_total_size(sizeof(u32)) + /* IFLA_BOND_ARP_INTERVAL */ |
sfeldma@cumulusnetworks.com | 7f28fa1 | 2013-12-12 14:10:31 -0800 | [diff] [blame] | 489 | /* IFLA_BOND_ARP_IP_TARGET */ |
sfeldma@cumulusnetworks.com | 288db0a | 2014-01-03 14:28:11 -0800 | [diff] [blame] | 490 | nla_total_size(sizeof(struct nlattr)) + |
sfeldma@cumulusnetworks.com | 7f28fa1 | 2013-12-12 14:10:31 -0800 | [diff] [blame] | 491 | nla_total_size(sizeof(u32)) * BOND_MAX_ARP_TARGETS + |
sfeldma@cumulusnetworks.com | 29c4948 | 2013-12-12 14:10:38 -0800 | [diff] [blame] | 492 | nla_total_size(sizeof(u32)) + /* IFLA_BOND_ARP_VALIDATE */ |
sfeldma@cumulusnetworks.com | d5c8425 | 2013-12-12 14:10:45 -0800 | [diff] [blame] | 493 | nla_total_size(sizeof(u32)) + /* IFLA_BOND_ARP_ALL_TARGETS */ |
sfeldma@cumulusnetworks.com | 0a98a0d | 2013-12-15 16:41:51 -0800 | [diff] [blame] | 494 | nla_total_size(sizeof(u32)) + /* IFLA_BOND_PRIMARY */ |
sfeldma@cumulusnetworks.com | 8a41ae4 | 2013-12-15 16:41:58 -0800 | [diff] [blame] | 495 | nla_total_size(sizeof(u8)) + /* IFLA_BOND_PRIMARY_RESELECT */ |
sfeldma@cumulusnetworks.com | 8990197 | 2013-12-15 16:42:05 -0800 | [diff] [blame] | 496 | nla_total_size(sizeof(u8)) + /* IFLA_BOND_FAIL_OVER_MAC */ |
sfeldma@cumulusnetworks.com | f70161c | 2013-12-15 16:42:12 -0800 | [diff] [blame] | 497 | nla_total_size(sizeof(u8)) + /* IFLA_BOND_XMIT_HASH_POLICY */ |
sfeldma@cumulusnetworks.com | d8838de7 | 2013-12-15 16:42:19 -0800 | [diff] [blame] | 498 | nla_total_size(sizeof(u32)) + /* IFLA_BOND_RESEND_IGMP */ |
sfeldma@cumulusnetworks.com | 2c9839c | 2013-12-17 21:30:09 -0800 | [diff] [blame] | 499 | nla_total_size(sizeof(u8)) + /* IFLA_BOND_NUM_PEER_NOTIF */ |
sfeldma@cumulusnetworks.com | 1cc0b1e | 2013-12-17 21:30:16 -0800 | [diff] [blame] | 500 | nla_total_size(sizeof(u8)) + /* IFLA_BOND_ALL_SLAVES_ACTIVE */ |
sfeldma@cumulusnetworks.com | 7d10100 | 2013-12-17 21:30:23 -0800 | [diff] [blame] | 501 | nla_total_size(sizeof(u32)) + /* IFLA_BOND_MIN_LINKS */ |
sfeldma@cumulusnetworks.com | 8d836d09 | 2013-12-17 21:30:30 -0800 | [diff] [blame] | 502 | nla_total_size(sizeof(u32)) + /* IFLA_BOND_LP_INTERVAL */ |
sfeldma@cumulusnetworks.com | c13ab3f | 2013-12-17 21:30:37 -0800 | [diff] [blame] | 503 | nla_total_size(sizeof(u32)) + /* IFLA_BOND_PACKETS_PER_SLAVE */ |
Hangbin Liu | 3a755cd | 2021-08-02 11:02:19 +0800 | [diff] [blame] | 504 | nla_total_size(sizeof(u8)) + /* IFLA_BOND_AD_LACP_ACTIVE */ |
sfeldma@cumulusnetworks.com | 998e40bb | 2014-01-03 14:18:41 -0800 | [diff] [blame] | 505 | nla_total_size(sizeof(u8)) + /* IFLA_BOND_AD_LACP_RATE */ |
sfeldma@cumulusnetworks.com | ec029fa | 2014-01-03 14:18:49 -0800 | [diff] [blame] | 506 | nla_total_size(sizeof(u8)) + /* IFLA_BOND_AD_SELECT */ |
sfeldma@cumulusnetworks.com | 4ee7ac7 | 2014-01-03 14:18:56 -0800 | [diff] [blame] | 507 | nla_total_size(sizeof(struct nlattr)) + /* IFLA_BOND_AD_INFO */ |
| 508 | nla_total_size(sizeof(u16)) + /* IFLA_BOND_AD_INFO_AGGREGATOR */ |
| 509 | nla_total_size(sizeof(u16)) + /* IFLA_BOND_AD_INFO_NUM_PORTS */ |
| 510 | nla_total_size(sizeof(u16)) + /* IFLA_BOND_AD_INFO_ACTOR_KEY */ |
| 511 | nla_total_size(sizeof(u16)) + /* IFLA_BOND_AD_INFO_PARTNER_KEY*/ |
| 512 | nla_total_size(ETH_ALEN) + /* IFLA_BOND_AD_INFO_PARTNER_MAC*/ |
Andy Gospodarek | 171a42c | 2015-05-09 00:01:58 -0700 | [diff] [blame] | 513 | nla_total_size(sizeof(u16)) + /* IFLA_BOND_AD_ACTOR_SYS_PRIO */ |
| 514 | nla_total_size(sizeof(u16)) + /* IFLA_BOND_AD_USER_PORT_KEY */ |
| 515 | nla_total_size(ETH_ALEN) + /* IFLA_BOND_AD_ACTOR_SYSTEM */ |
Nikolay Aleksandrov | 0f7bffd | 2015-07-31 16:49:43 +0200 | [diff] [blame] | 516 | nla_total_size(sizeof(u8)) + /* IFLA_BOND_TLB_DYNAMIC_LB */ |
Vincent Bernat | 07a4dde | 2019-07-02 19:43:54 +0200 | [diff] [blame] | 517 | nla_total_size(sizeof(u32)) + /* IFLA_BOND_PEER_NOTIF_DELAY */ |
sfeldma@cumulusnetworks.com | eecdaa6 | 2013-12-12 14:09:55 -0800 | [diff] [blame] | 518 | 0; |
Jiri Pirko | 90af231 | 2013-10-18 17:43:38 +0200 | [diff] [blame] | 519 | } |
| 520 | |
Eric Dumazet | e965f80 | 2014-07-15 06:56:53 -0700 | [diff] [blame] | 521 | static int bond_option_active_slave_get_ifindex(struct bonding *bond) |
| 522 | { |
| 523 | const struct net_device *slave; |
| 524 | int ifindex; |
| 525 | |
| 526 | rcu_read_lock(); |
| 527 | slave = bond_option_active_slave_get_rcu(bond); |
| 528 | ifindex = slave ? slave->ifindex : 0; |
| 529 | rcu_read_unlock(); |
| 530 | return ifindex; |
| 531 | } |
| 532 | |
Jiri Pirko | 90af231 | 2013-10-18 17:43:38 +0200 | [diff] [blame] | 533 | static int bond_fill_info(struct sk_buff *skb, |
| 534 | const struct net_device *bond_dev) |
| 535 | { |
| 536 | struct bonding *bond = netdev_priv(bond_dev); |
sfeldma@cumulusnetworks.com | c13ab3f | 2013-12-17 21:30:37 -0800 | [diff] [blame] | 537 | unsigned int packets_per_slave; |
Eric Dumazet | e965f80 | 2014-07-15 06:56:53 -0700 | [diff] [blame] | 538 | int ifindex, i, targets_added; |
| 539 | struct nlattr *targets; |
Nikolay Aleksandrov | 059b47e | 2014-09-09 23:17:00 +0200 | [diff] [blame] | 540 | struct slave *primary; |
Jiri Pirko | 90af231 | 2013-10-18 17:43:38 +0200 | [diff] [blame] | 541 | |
Veaceslav Falico | 0184409 | 2014-05-15 21:39:55 +0200 | [diff] [blame] | 542 | if (nla_put_u8(skb, IFLA_BOND_MODE, BOND_MODE(bond))) |
Jiri Pirko | 90af231 | 2013-10-18 17:43:38 +0200 | [diff] [blame] | 543 | goto nla_put_failure; |
sfeldma@cumulusnetworks.com | eecdaa6 | 2013-12-12 14:09:55 -0800 | [diff] [blame] | 544 | |
Eric Dumazet | e965f80 | 2014-07-15 06:56:53 -0700 | [diff] [blame] | 545 | ifindex = bond_option_active_slave_get_ifindex(bond); |
| 546 | if (ifindex && nla_put_u32(skb, IFLA_BOND_ACTIVE_SLAVE, ifindex)) |
sfeldma@cumulusnetworks.com | eecdaa6 | 2013-12-12 14:09:55 -0800 | [diff] [blame] | 547 | goto nla_put_failure; |
| 548 | |
| 549 | if (nla_put_u32(skb, IFLA_BOND_MIIMON, bond->params.miimon)) |
| 550 | goto nla_put_failure; |
| 551 | |
sfeldma@cumulusnetworks.com | 25852e2 | 2013-12-12 14:10:02 -0800 | [diff] [blame] | 552 | if (nla_put_u32(skb, IFLA_BOND_UPDELAY, |
| 553 | bond->params.updelay * bond->params.miimon)) |
| 554 | goto nla_put_failure; |
| 555 | |
sfeldma@cumulusnetworks.com | c7461f9 | 2013-12-12 14:10:09 -0800 | [diff] [blame] | 556 | if (nla_put_u32(skb, IFLA_BOND_DOWNDELAY, |
| 557 | bond->params.downdelay * bond->params.miimon)) |
| 558 | goto nla_put_failure; |
| 559 | |
Vincent Bernat | 07a4dde | 2019-07-02 19:43:54 +0200 | [diff] [blame] | 560 | if (nla_put_u32(skb, IFLA_BOND_PEER_NOTIF_DELAY, |
Vincent Bernat | ee4f56f | 2019-07-06 23:01:08 +0200 | [diff] [blame] | 561 | bond->params.peer_notif_delay * bond->params.miimon)) |
Vincent Bernat | 07a4dde | 2019-07-02 19:43:54 +0200 | [diff] [blame] | 562 | goto nla_put_failure; |
| 563 | |
sfeldma@cumulusnetworks.com | 9f53e14 | 2013-12-12 14:10:16 -0800 | [diff] [blame] | 564 | if (nla_put_u8(skb, IFLA_BOND_USE_CARRIER, bond->params.use_carrier)) |
| 565 | goto nla_put_failure; |
| 566 | |
sfeldma@cumulusnetworks.com | 06151db | 2013-12-12 14:10:24 -0800 | [diff] [blame] | 567 | if (nla_put_u32(skb, IFLA_BOND_ARP_INTERVAL, bond->params.arp_interval)) |
| 568 | goto nla_put_failure; |
| 569 | |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 570 | targets = nla_nest_start_noflag(skb, IFLA_BOND_ARP_IP_TARGET); |
sfeldma@cumulusnetworks.com | 7f28fa1 | 2013-12-12 14:10:31 -0800 | [diff] [blame] | 571 | if (!targets) |
| 572 | goto nla_put_failure; |
| 573 | |
| 574 | targets_added = 0; |
| 575 | for (i = 0; i < BOND_MAX_ARP_TARGETS; i++) { |
| 576 | if (bond->params.arp_targets[i]) { |
Hangbin Liu | d62844a | 2017-05-06 11:17:06 +0800 | [diff] [blame] | 577 | if (nla_put_be32(skb, i, bond->params.arp_targets[i])) |
| 578 | goto nla_put_failure; |
sfeldma@cumulusnetworks.com | 7f28fa1 | 2013-12-12 14:10:31 -0800 | [diff] [blame] | 579 | targets_added = 1; |
| 580 | } |
| 581 | } |
| 582 | |
| 583 | if (targets_added) |
| 584 | nla_nest_end(skb, targets); |
| 585 | else |
| 586 | nla_nest_cancel(skb, targets); |
| 587 | |
sfeldma@cumulusnetworks.com | 29c4948 | 2013-12-12 14:10:38 -0800 | [diff] [blame] | 588 | if (nla_put_u32(skb, IFLA_BOND_ARP_VALIDATE, bond->params.arp_validate)) |
| 589 | goto nla_put_failure; |
| 590 | |
sfeldma@cumulusnetworks.com | d5c8425 | 2013-12-12 14:10:45 -0800 | [diff] [blame] | 591 | if (nla_put_u32(skb, IFLA_BOND_ARP_ALL_TARGETS, |
| 592 | bond->params.arp_all_targets)) |
| 593 | goto nla_put_failure; |
| 594 | |
Nikolay Aleksandrov | 059b47e | 2014-09-09 23:17:00 +0200 | [diff] [blame] | 595 | primary = rtnl_dereference(bond->primary_slave); |
| 596 | if (primary && |
| 597 | nla_put_u32(skb, IFLA_BOND_PRIMARY, primary->dev->ifindex)) |
sfeldma@cumulusnetworks.com | 0a98a0d | 2013-12-15 16:41:51 -0800 | [diff] [blame] | 598 | goto nla_put_failure; |
| 599 | |
sfeldma@cumulusnetworks.com | 8a41ae4 | 2013-12-15 16:41:58 -0800 | [diff] [blame] | 600 | if (nla_put_u8(skb, IFLA_BOND_PRIMARY_RESELECT, |
| 601 | bond->params.primary_reselect)) |
| 602 | goto nla_put_failure; |
| 603 | |
sfeldma@cumulusnetworks.com | 8990197 | 2013-12-15 16:42:05 -0800 | [diff] [blame] | 604 | if (nla_put_u8(skb, IFLA_BOND_FAIL_OVER_MAC, |
| 605 | bond->params.fail_over_mac)) |
| 606 | goto nla_put_failure; |
| 607 | |
sfeldma@cumulusnetworks.com | f70161c | 2013-12-15 16:42:12 -0800 | [diff] [blame] | 608 | if (nla_put_u8(skb, IFLA_BOND_XMIT_HASH_POLICY, |
| 609 | bond->params.xmit_policy)) |
| 610 | goto nla_put_failure; |
| 611 | |
sfeldma@cumulusnetworks.com | d8838de7 | 2013-12-15 16:42:19 -0800 | [diff] [blame] | 612 | if (nla_put_u32(skb, IFLA_BOND_RESEND_IGMP, |
Yufeng Mo | 97a1111 | 2021-05-20 14:18:35 +0800 | [diff] [blame] | 613 | bond->params.resend_igmp)) |
sfeldma@cumulusnetworks.com | d8838de7 | 2013-12-15 16:42:19 -0800 | [diff] [blame] | 614 | goto nla_put_failure; |
| 615 | |
sfeldma@cumulusnetworks.com | 2c9839c | 2013-12-17 21:30:09 -0800 | [diff] [blame] | 616 | if (nla_put_u8(skb, IFLA_BOND_NUM_PEER_NOTIF, |
| 617 | bond->params.num_peer_notif)) |
| 618 | goto nla_put_failure; |
| 619 | |
sfeldma@cumulusnetworks.com | 1cc0b1e | 2013-12-17 21:30:16 -0800 | [diff] [blame] | 620 | if (nla_put_u8(skb, IFLA_BOND_ALL_SLAVES_ACTIVE, |
| 621 | bond->params.all_slaves_active)) |
| 622 | goto nla_put_failure; |
| 623 | |
sfeldma@cumulusnetworks.com | 7d10100 | 2013-12-17 21:30:23 -0800 | [diff] [blame] | 624 | if (nla_put_u32(skb, IFLA_BOND_MIN_LINKS, |
| 625 | bond->params.min_links)) |
| 626 | goto nla_put_failure; |
| 627 | |
sfeldma@cumulusnetworks.com | 8d836d09 | 2013-12-17 21:30:30 -0800 | [diff] [blame] | 628 | if (nla_put_u32(skb, IFLA_BOND_LP_INTERVAL, |
| 629 | bond->params.lp_interval)) |
| 630 | goto nla_put_failure; |
| 631 | |
sfeldma@cumulusnetworks.com | c13ab3f | 2013-12-17 21:30:37 -0800 | [diff] [blame] | 632 | packets_per_slave = bond->params.packets_per_slave; |
sfeldma@cumulusnetworks.com | c13ab3f | 2013-12-17 21:30:37 -0800 | [diff] [blame] | 633 | if (nla_put_u32(skb, IFLA_BOND_PACKETS_PER_SLAVE, |
| 634 | packets_per_slave)) |
| 635 | goto nla_put_failure; |
| 636 | |
Hangbin Liu | 3a755cd | 2021-08-02 11:02:19 +0800 | [diff] [blame] | 637 | if (nla_put_u8(skb, IFLA_BOND_AD_LACP_ACTIVE, |
| 638 | bond->params.lacp_active)) |
| 639 | goto nla_put_failure; |
| 640 | |
sfeldma@cumulusnetworks.com | 998e40bb | 2014-01-03 14:18:41 -0800 | [diff] [blame] | 641 | if (nla_put_u8(skb, IFLA_BOND_AD_LACP_RATE, |
| 642 | bond->params.lacp_fast)) |
| 643 | goto nla_put_failure; |
| 644 | |
sfeldma@cumulusnetworks.com | ec029fa | 2014-01-03 14:18:49 -0800 | [diff] [blame] | 645 | if (nla_put_u8(skb, IFLA_BOND_AD_SELECT, |
| 646 | bond->params.ad_select)) |
| 647 | goto nla_put_failure; |
| 648 | |
Nikolay Aleksandrov | 0f7bffd | 2015-07-31 16:49:43 +0200 | [diff] [blame] | 649 | if (nla_put_u8(skb, IFLA_BOND_TLB_DYNAMIC_LB, |
| 650 | bond->params.tlb_dynamic_lb)) |
| 651 | goto nla_put_failure; |
| 652 | |
Veaceslav Falico | 0184409 | 2014-05-15 21:39:55 +0200 | [diff] [blame] | 653 | if (BOND_MODE(bond) == BOND_MODE_8023AD) { |
sfeldma@cumulusnetworks.com | 4ee7ac7 | 2014-01-03 14:18:56 -0800 | [diff] [blame] | 654 | struct ad_info info; |
| 655 | |
Mahesh Bandewar | 4cd6b47 | 2015-06-18 11:30:54 -0700 | [diff] [blame] | 656 | if (capable(CAP_NET_ADMIN)) { |
| 657 | if (nla_put_u16(skb, IFLA_BOND_AD_ACTOR_SYS_PRIO, |
| 658 | bond->params.ad_actor_sys_prio)) |
| 659 | goto nla_put_failure; |
Andy Gospodarek | 171a42c | 2015-05-09 00:01:58 -0700 | [diff] [blame] | 660 | |
Mahesh Bandewar | 4cd6b47 | 2015-06-18 11:30:54 -0700 | [diff] [blame] | 661 | if (nla_put_u16(skb, IFLA_BOND_AD_USER_PORT_KEY, |
| 662 | bond->params.ad_user_port_key)) |
| 663 | goto nla_put_failure; |
Andy Gospodarek | 171a42c | 2015-05-09 00:01:58 -0700 | [diff] [blame] | 664 | |
Mahesh Bandewar | 4cd6b47 | 2015-06-18 11:30:54 -0700 | [diff] [blame] | 665 | if (nla_put(skb, IFLA_BOND_AD_ACTOR_SYSTEM, |
Tobias Jungel | 414dd6f | 2018-10-28 12:54:10 +0100 | [diff] [blame] | 666 | ETH_ALEN, &bond->params.ad_actor_system)) |
Mahesh Bandewar | 4cd6b47 | 2015-06-18 11:30:54 -0700 | [diff] [blame] | 667 | goto nla_put_failure; |
| 668 | } |
sfeldma@cumulusnetworks.com | 4ee7ac7 | 2014-01-03 14:18:56 -0800 | [diff] [blame] | 669 | if (!bond_3ad_get_active_agg_info(bond, &info)) { |
| 670 | struct nlattr *nest; |
| 671 | |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 672 | nest = nla_nest_start_noflag(skb, IFLA_BOND_AD_INFO); |
sfeldma@cumulusnetworks.com | 4ee7ac7 | 2014-01-03 14:18:56 -0800 | [diff] [blame] | 673 | if (!nest) |
| 674 | goto nla_put_failure; |
| 675 | |
| 676 | if (nla_put_u16(skb, IFLA_BOND_AD_INFO_AGGREGATOR, |
| 677 | info.aggregator_id)) |
| 678 | goto nla_put_failure; |
| 679 | if (nla_put_u16(skb, IFLA_BOND_AD_INFO_NUM_PORTS, |
| 680 | info.ports)) |
| 681 | goto nla_put_failure; |
| 682 | if (nla_put_u16(skb, IFLA_BOND_AD_INFO_ACTOR_KEY, |
| 683 | info.actor_key)) |
| 684 | goto nla_put_failure; |
| 685 | if (nla_put_u16(skb, IFLA_BOND_AD_INFO_PARTNER_KEY, |
| 686 | info.partner_key)) |
| 687 | goto nla_put_failure; |
| 688 | if (nla_put(skb, IFLA_BOND_AD_INFO_PARTNER_MAC, |
| 689 | sizeof(info.partner_system), |
| 690 | &info.partner_system)) |
| 691 | goto nla_put_failure; |
| 692 | |
| 693 | nla_nest_end(skb, nest); |
| 694 | } |
| 695 | } |
| 696 | |
Jiri Pirko | 90af231 | 2013-10-18 17:43:38 +0200 | [diff] [blame] | 697 | return 0; |
| 698 | |
| 699 | nla_put_failure: |
| 700 | return -EMSGSIZE; |
| 701 | } |
| 702 | |
Nikolay Aleksandrov | a258aea | 2019-01-18 14:30:23 +0200 | [diff] [blame] | 703 | static size_t bond_get_linkxstats_size(const struct net_device *dev, int attr) |
| 704 | { |
| 705 | switch (attr) { |
| 706 | case IFLA_STATS_LINK_XSTATS: |
| 707 | case IFLA_STATS_LINK_XSTATS_SLAVE: |
| 708 | break; |
| 709 | default: |
| 710 | return 0; |
| 711 | } |
| 712 | |
| 713 | return bond_3ad_stats_size() + nla_total_size(0); |
| 714 | } |
| 715 | |
| 716 | static int bond_fill_linkxstats(struct sk_buff *skb, |
| 717 | const struct net_device *dev, |
| 718 | int *prividx, int attr) |
| 719 | { |
| 720 | struct nlattr *nla __maybe_unused; |
| 721 | struct slave *slave = NULL; |
| 722 | struct nlattr *nest, *nest2; |
| 723 | struct bonding *bond; |
| 724 | |
| 725 | switch (attr) { |
| 726 | case IFLA_STATS_LINK_XSTATS: |
| 727 | bond = netdev_priv(dev); |
| 728 | break; |
| 729 | case IFLA_STATS_LINK_XSTATS_SLAVE: |
| 730 | slave = bond_slave_get_rtnl(dev); |
| 731 | if (!slave) |
| 732 | return 0; |
| 733 | bond = slave->bond; |
| 734 | break; |
| 735 | default: |
| 736 | return -EINVAL; |
| 737 | } |
| 738 | |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 739 | nest = nla_nest_start_noflag(skb, LINK_XSTATS_TYPE_BOND); |
Nikolay Aleksandrov | a258aea | 2019-01-18 14:30:23 +0200 | [diff] [blame] | 740 | if (!nest) |
| 741 | return -EMSGSIZE; |
| 742 | if (BOND_MODE(bond) == BOND_MODE_8023AD) { |
Nikolay Aleksandrov | 949e7ce | 2019-01-23 19:14:50 +0200 | [diff] [blame] | 743 | struct bond_3ad_stats *stats; |
Nikolay Aleksandrov | a258aea | 2019-01-18 14:30:23 +0200 | [diff] [blame] | 744 | |
Nikolay Aleksandrov | 949e7ce | 2019-01-23 19:14:50 +0200 | [diff] [blame] | 745 | if (slave) |
| 746 | stats = &SLAVE_AD_INFO(slave)->stats; |
| 747 | else |
| 748 | stats = &BOND_AD_INFO(bond).stats; |
Nikolay Aleksandrov | a258aea | 2019-01-18 14:30:23 +0200 | [diff] [blame] | 749 | |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 750 | nest2 = nla_nest_start_noflag(skb, BOND_XSTATS_3AD); |
Nikolay Aleksandrov | a258aea | 2019-01-18 14:30:23 +0200 | [diff] [blame] | 751 | if (!nest2) { |
| 752 | nla_nest_end(skb, nest); |
| 753 | return -EMSGSIZE; |
| 754 | } |
| 755 | |
Nikolay Aleksandrov | 949e7ce | 2019-01-23 19:14:50 +0200 | [diff] [blame] | 756 | if (bond_3ad_stats_fill(skb, stats)) { |
Nikolay Aleksandrov | a258aea | 2019-01-18 14:30:23 +0200 | [diff] [blame] | 757 | nla_nest_cancel(skb, nest2); |
| 758 | nla_nest_end(skb, nest); |
| 759 | return -EMSGSIZE; |
| 760 | } |
| 761 | nla_nest_end(skb, nest2); |
| 762 | } |
| 763 | nla_nest_end(skb, nest); |
| 764 | |
| 765 | return 0; |
| 766 | } |
| 767 | |
Jiri Pirko | 0a2a78c | 2013-10-18 17:43:33 +0200 | [diff] [blame] | 768 | struct rtnl_link_ops bond_link_ops __read_mostly = { |
| 769 | .kind = "bond", |
| 770 | .priv_size = sizeof(struct bonding), |
| 771 | .setup = bond_setup, |
Jiri Pirko | 90af231 | 2013-10-18 17:43:38 +0200 | [diff] [blame] | 772 | .maxtype = IFLA_BOND_MAX, |
| 773 | .policy = bond_policy, |
Jiri Pirko | 0a2a78c | 2013-10-18 17:43:33 +0200 | [diff] [blame] | 774 | .validate = bond_validate, |
Jiri Pirko | 90af231 | 2013-10-18 17:43:38 +0200 | [diff] [blame] | 775 | .newlink = bond_newlink, |
| 776 | .changelink = bond_changelink, |
| 777 | .get_size = bond_get_size, |
| 778 | .fill_info = bond_fill_info, |
Jiri Pirko | 0a2a78c | 2013-10-18 17:43:33 +0200 | [diff] [blame] | 779 | .get_num_tx_queues = bond_get_num_tx_queues, |
| 780 | .get_num_rx_queues = bond_get_num_tx_queues, /* Use the same number |
| 781 | as for TX queues */ |
Nikolay Aleksandrov | a258aea | 2019-01-18 14:30:23 +0200 | [diff] [blame] | 782 | .fill_linkxstats = bond_fill_linkxstats, |
| 783 | .get_linkxstats_size = bond_get_linkxstats_size, |
Jiri Pirko | cea6aeb | 2014-09-05 11:36:34 +0200 | [diff] [blame] | 784 | .slave_maxtype = IFLA_BOND_SLAVE_MAX, |
| 785 | .slave_policy = bond_slave_policy, |
| 786 | .slave_changelink = bond_slave_changelink, |
Jiri Pirko | 3bad540 | 2014-01-22 09:05:56 +0100 | [diff] [blame] | 787 | .get_slave_size = bond_get_slave_size, |
| 788 | .fill_slave_info = bond_fill_slave_info, |
Jiri Pirko | 0a2a78c | 2013-10-18 17:43:33 +0200 | [diff] [blame] | 789 | }; |
| 790 | |
| 791 | int __init bond_netlink_init(void) |
| 792 | { |
| 793 | return rtnl_link_register(&bond_link_ops); |
| 794 | } |
| 795 | |
David S. Miller | a729e83 | 2013-10-19 19:09:18 -0400 | [diff] [blame] | 796 | void bond_netlink_fini(void) |
Jiri Pirko | 0a2a78c | 2013-10-18 17:43:33 +0200 | [diff] [blame] | 797 | { |
| 798 | rtnl_link_unregister(&bond_link_ops); |
| 799 | } |
| 800 | |
| 801 | MODULE_ALIAS_RTNL_LINK("bond"); |