Jiri Pirko | 007f790 | 2014-11-28 14:34:17 +0100 | [diff] [blame] | 1 | /* |
| 2 | * net/switchdev/switchdev.c - Switch device API |
| 3 | * Copyright (c) 2014 Jiri Pirko <jiri@resnulli.us> |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License as published by |
| 7 | * the Free Software Foundation; either version 2 of the License, or |
| 8 | * (at your option) any later version. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/types.h> |
| 13 | #include <linux/init.h> |
Jiri Pirko | 03bf0c2 | 2015-01-15 23:49:36 +0100 | [diff] [blame] | 14 | #include <linux/mutex.h> |
| 15 | #include <linux/notifier.h> |
Jiri Pirko | 007f790 | 2014-11-28 14:34:17 +0100 | [diff] [blame] | 16 | #include <linux/netdevice.h> |
Scott Feldman | 5e8d904 | 2015-03-05 21:21:15 -0800 | [diff] [blame] | 17 | #include <net/ip_fib.h> |
Jiri Pirko | 007f790 | 2014-11-28 14:34:17 +0100 | [diff] [blame] | 18 | #include <net/switchdev.h> |
| 19 | |
| 20 | /** |
| 21 | * netdev_switch_parent_id_get - Get ID of a switch |
| 22 | * @dev: port device |
| 23 | * @psid: switch ID |
| 24 | * |
| 25 | * Get ID of a switch this port is part of. |
| 26 | */ |
| 27 | int netdev_switch_parent_id_get(struct net_device *dev, |
| 28 | struct netdev_phys_item_id *psid) |
| 29 | { |
| 30 | const struct net_device_ops *ops = dev->netdev_ops; |
| 31 | |
| 32 | if (!ops->ndo_switch_parent_id_get) |
| 33 | return -EOPNOTSUPP; |
| 34 | return ops->ndo_switch_parent_id_get(dev, psid); |
| 35 | } |
| 36 | EXPORT_SYMBOL(netdev_switch_parent_id_get); |
Scott Feldman | 38dcf35 | 2014-11-28 14:34:20 +0100 | [diff] [blame] | 37 | |
| 38 | /** |
| 39 | * netdev_switch_port_stp_update - Notify switch device port of STP |
| 40 | * state change |
| 41 | * @dev: port device |
| 42 | * @state: port STP state |
| 43 | * |
| 44 | * Notify switch device port of bridge port STP state change. |
| 45 | */ |
| 46 | int netdev_switch_port_stp_update(struct net_device *dev, u8 state) |
| 47 | { |
| 48 | const struct net_device_ops *ops = dev->netdev_ops; |
| 49 | |
| 50 | if (!ops->ndo_switch_port_stp_update) |
| 51 | return -EOPNOTSUPP; |
| 52 | WARN_ON(!ops->ndo_switch_parent_id_get); |
| 53 | return ops->ndo_switch_port_stp_update(dev, state); |
| 54 | } |
| 55 | EXPORT_SYMBOL(netdev_switch_port_stp_update); |
Jiri Pirko | 03bf0c2 | 2015-01-15 23:49:36 +0100 | [diff] [blame] | 56 | |
| 57 | static DEFINE_MUTEX(netdev_switch_mutex); |
| 58 | static RAW_NOTIFIER_HEAD(netdev_switch_notif_chain); |
| 59 | |
| 60 | /** |
| 61 | * register_netdev_switch_notifier - Register nofifier |
| 62 | * @nb: notifier_block |
| 63 | * |
| 64 | * Register switch device notifier. This should be used by code |
| 65 | * which needs to monitor events happening in particular device. |
| 66 | * Return values are same as for atomic_notifier_chain_register(). |
| 67 | */ |
| 68 | int register_netdev_switch_notifier(struct notifier_block *nb) |
| 69 | { |
| 70 | int err; |
| 71 | |
| 72 | mutex_lock(&netdev_switch_mutex); |
| 73 | err = raw_notifier_chain_register(&netdev_switch_notif_chain, nb); |
| 74 | mutex_unlock(&netdev_switch_mutex); |
| 75 | return err; |
| 76 | } |
| 77 | EXPORT_SYMBOL(register_netdev_switch_notifier); |
| 78 | |
| 79 | /** |
| 80 | * unregister_netdev_switch_notifier - Unregister nofifier |
| 81 | * @nb: notifier_block |
| 82 | * |
| 83 | * Unregister switch device notifier. |
| 84 | * Return values are same as for atomic_notifier_chain_unregister(). |
| 85 | */ |
| 86 | int unregister_netdev_switch_notifier(struct notifier_block *nb) |
| 87 | { |
| 88 | int err; |
| 89 | |
| 90 | mutex_lock(&netdev_switch_mutex); |
| 91 | err = raw_notifier_chain_unregister(&netdev_switch_notif_chain, nb); |
| 92 | mutex_unlock(&netdev_switch_mutex); |
| 93 | return err; |
| 94 | } |
| 95 | EXPORT_SYMBOL(unregister_netdev_switch_notifier); |
| 96 | |
| 97 | /** |
| 98 | * call_netdev_switch_notifiers - Call nofifiers |
| 99 | * @val: value passed unmodified to notifier function |
| 100 | * @dev: port device |
| 101 | * @info: notifier information data |
| 102 | * |
| 103 | * Call all network notifier blocks. This should be called by driver |
| 104 | * when it needs to propagate hardware event. |
| 105 | * Return values are same as for atomic_notifier_call_chain(). |
| 106 | */ |
| 107 | int call_netdev_switch_notifiers(unsigned long val, struct net_device *dev, |
| 108 | struct netdev_switch_notifier_info *info) |
| 109 | { |
| 110 | int err; |
| 111 | |
| 112 | info->dev = dev; |
| 113 | mutex_lock(&netdev_switch_mutex); |
| 114 | err = raw_notifier_call_chain(&netdev_switch_notif_chain, val, info); |
| 115 | mutex_unlock(&netdev_switch_mutex); |
| 116 | return err; |
| 117 | } |
| 118 | EXPORT_SYMBOL(call_netdev_switch_notifiers); |
Roopa Prabhu | 8a44dbb | 2015-01-29 22:40:13 -0800 | [diff] [blame] | 119 | |
| 120 | /** |
| 121 | * netdev_switch_port_bridge_setlink - Notify switch device port of bridge |
| 122 | * port attributes |
| 123 | * |
| 124 | * @dev: port device |
| 125 | * @nlh: netlink msg with bridge port attributes |
| 126 | * @flags: bridge setlink flags |
| 127 | * |
| 128 | * Notify switch device port of bridge port attributes |
| 129 | */ |
| 130 | int netdev_switch_port_bridge_setlink(struct net_device *dev, |
| 131 | struct nlmsghdr *nlh, u16 flags) |
| 132 | { |
| 133 | const struct net_device_ops *ops = dev->netdev_ops; |
| 134 | |
| 135 | if (!(dev->features & NETIF_F_HW_SWITCH_OFFLOAD)) |
| 136 | return 0; |
| 137 | |
| 138 | if (!ops->ndo_bridge_setlink) |
| 139 | return -EOPNOTSUPP; |
| 140 | |
| 141 | return ops->ndo_bridge_setlink(dev, nlh, flags); |
| 142 | } |
| 143 | EXPORT_SYMBOL(netdev_switch_port_bridge_setlink); |
| 144 | |
| 145 | /** |
| 146 | * netdev_switch_port_bridge_dellink - Notify switch device port of bridge |
| 147 | * port attribute delete |
| 148 | * |
| 149 | * @dev: port device |
| 150 | * @nlh: netlink msg with bridge port attributes |
| 151 | * @flags: bridge setlink flags |
| 152 | * |
| 153 | * Notify switch device port of bridge port attribute delete |
| 154 | */ |
| 155 | int netdev_switch_port_bridge_dellink(struct net_device *dev, |
| 156 | struct nlmsghdr *nlh, u16 flags) |
| 157 | { |
| 158 | const struct net_device_ops *ops = dev->netdev_ops; |
| 159 | |
| 160 | if (!(dev->features & NETIF_F_HW_SWITCH_OFFLOAD)) |
| 161 | return 0; |
| 162 | |
| 163 | if (!ops->ndo_bridge_dellink) |
| 164 | return -EOPNOTSUPP; |
| 165 | |
| 166 | return ops->ndo_bridge_dellink(dev, nlh, flags); |
| 167 | } |
| 168 | EXPORT_SYMBOL(netdev_switch_port_bridge_dellink); |
| 169 | |
| 170 | /** |
| 171 | * ndo_dflt_netdev_switch_port_bridge_setlink - default ndo bridge setlink |
| 172 | * op for master devices |
| 173 | * |
| 174 | * @dev: port device |
| 175 | * @nlh: netlink msg with bridge port attributes |
| 176 | * @flags: bridge setlink flags |
| 177 | * |
| 178 | * Notify master device slaves of bridge port attributes |
| 179 | */ |
| 180 | int ndo_dflt_netdev_switch_port_bridge_setlink(struct net_device *dev, |
| 181 | struct nlmsghdr *nlh, u16 flags) |
| 182 | { |
| 183 | struct net_device *lower_dev; |
| 184 | struct list_head *iter; |
| 185 | int ret = 0, err = 0; |
| 186 | |
| 187 | if (!(dev->features & NETIF_F_HW_SWITCH_OFFLOAD)) |
| 188 | return ret; |
| 189 | |
| 190 | netdev_for_each_lower_dev(dev, lower_dev, iter) { |
| 191 | err = netdev_switch_port_bridge_setlink(lower_dev, nlh, flags); |
| 192 | if (err && err != -EOPNOTSUPP) |
| 193 | ret = err; |
| 194 | } |
| 195 | |
| 196 | return ret; |
| 197 | } |
| 198 | EXPORT_SYMBOL(ndo_dflt_netdev_switch_port_bridge_setlink); |
| 199 | |
| 200 | /** |
| 201 | * ndo_dflt_netdev_switch_port_bridge_dellink - default ndo bridge dellink |
| 202 | * op for master devices |
| 203 | * |
| 204 | * @dev: port device |
| 205 | * @nlh: netlink msg with bridge port attributes |
| 206 | * @flags: bridge dellink flags |
| 207 | * |
| 208 | * Notify master device slaves of bridge port attribute deletes |
| 209 | */ |
| 210 | int ndo_dflt_netdev_switch_port_bridge_dellink(struct net_device *dev, |
| 211 | struct nlmsghdr *nlh, u16 flags) |
| 212 | { |
| 213 | struct net_device *lower_dev; |
| 214 | struct list_head *iter; |
| 215 | int ret = 0, err = 0; |
| 216 | |
| 217 | if (!(dev->features & NETIF_F_HW_SWITCH_OFFLOAD)) |
| 218 | return ret; |
| 219 | |
| 220 | netdev_for_each_lower_dev(dev, lower_dev, iter) { |
| 221 | err = netdev_switch_port_bridge_dellink(lower_dev, nlh, flags); |
| 222 | if (err && err != -EOPNOTSUPP) |
| 223 | ret = err; |
| 224 | } |
| 225 | |
| 226 | return ret; |
| 227 | } |
| 228 | EXPORT_SYMBOL(ndo_dflt_netdev_switch_port_bridge_dellink); |
Scott Feldman | 5e8d904 | 2015-03-05 21:21:15 -0800 | [diff] [blame] | 229 | |
| 230 | /** |
| 231 | * netdev_switch_fib_ipv4_add - Add IPv4 route entry to switch |
| 232 | * |
| 233 | * @dst: route's IPv4 destination address |
| 234 | * @dst_len: destination address length (prefix length) |
| 235 | * @fi: route FIB info structure |
| 236 | * @tos: route TOS |
| 237 | * @type: route type |
| 238 | * @tb_id: route table ID |
| 239 | * |
| 240 | * Add IPv4 route entry to switch device. |
| 241 | */ |
| 242 | int netdev_switch_fib_ipv4_add(u32 dst, int dst_len, struct fib_info *fi, |
| 243 | u8 tos, u8 type, u32 tb_id) |
| 244 | { |
Scott Feldman | 104616e | 2015-03-05 21:21:16 -0800 | [diff] [blame^] | 245 | /* Don't offload route if using custom ip rules */ |
| 246 | if (fi->fib_net->ipv4.fib_has_custom_rules) |
| 247 | return 0; |
| 248 | |
Scott Feldman | 5e8d904 | 2015-03-05 21:21:15 -0800 | [diff] [blame] | 249 | return 0; |
| 250 | } |
| 251 | EXPORT_SYMBOL(netdev_switch_fib_ipv4_add); |
| 252 | |
| 253 | /** |
| 254 | * netdev_switch_fib_ipv4_del - Delete IPv4 route entry from switch |
| 255 | * |
| 256 | * @dst: route's IPv4 destination address |
| 257 | * @dst_len: destination address length (prefix length) |
| 258 | * @fi: route FIB info structure |
| 259 | * @tos: route TOS |
| 260 | * @type: route type |
| 261 | * @tb_id: route table ID |
| 262 | * |
| 263 | * Delete IPv4 route entry from switch device. |
| 264 | */ |
| 265 | int netdev_switch_fib_ipv4_del(u32 dst, int dst_len, struct fib_info *fi, |
| 266 | u8 tos, u8 type, u32 tb_id) |
| 267 | { |
| 268 | return 0; |
| 269 | } |
| 270 | EXPORT_SYMBOL(netdev_switch_fib_ipv4_del); |