|
@@ -16,12 +16,9 @@
|
|
|
#include <linux/sched.h>
|
|
|
#include <linux/wait.h>
|
|
|
#include <linux/spinlock.h>
|
|
|
-#include <linux/hashtable.h>
|
|
|
-#include <linux/crc32.h>
|
|
|
#include <linux/sort.h>
|
|
|
#include <linux/random.h>
|
|
|
#include <linux/netdevice.h>
|
|
|
-#include <linux/inetdevice.h>
|
|
|
#include <linux/skbuff.h>
|
|
|
#include <linux/socket.h>
|
|
|
#include <linux/etherdevice.h>
|
|
@@ -33,7 +30,6 @@
|
|
|
#include <linux/ctype.h>
|
|
|
#include <net/switchdev.h>
|
|
|
#include <net/rtnetlink.h>
|
|
|
-#include <net/ip_fib.h>
|
|
|
#include <net/netevent.h>
|
|
|
#include <net/arp.h>
|
|
|
#include <linux/io-64-nonatomic-lo-hi.h>
|
|
@@ -50,281 +46,6 @@ static const struct pci_device_id rocker_pci_id_table[] = {
|
|
|
{0, }
|
|
|
};
|
|
|
|
|
|
-struct rocker_flow_tbl_key {
|
|
|
- u32 priority;
|
|
|
- enum rocker_of_dpa_table_id tbl_id;
|
|
|
- union {
|
|
|
- struct {
|
|
|
- u32 in_pport;
|
|
|
- u32 in_pport_mask;
|
|
|
- enum rocker_of_dpa_table_id goto_tbl;
|
|
|
- } ig_port;
|
|
|
- struct {
|
|
|
- u32 in_pport;
|
|
|
- __be16 vlan_id;
|
|
|
- __be16 vlan_id_mask;
|
|
|
- enum rocker_of_dpa_table_id goto_tbl;
|
|
|
- bool untagged;
|
|
|
- __be16 new_vlan_id;
|
|
|
- } vlan;
|
|
|
- struct {
|
|
|
- u32 in_pport;
|
|
|
- u32 in_pport_mask;
|
|
|
- __be16 eth_type;
|
|
|
- u8 eth_dst[ETH_ALEN];
|
|
|
- u8 eth_dst_mask[ETH_ALEN];
|
|
|
- __be16 vlan_id;
|
|
|
- __be16 vlan_id_mask;
|
|
|
- enum rocker_of_dpa_table_id goto_tbl;
|
|
|
- bool copy_to_cpu;
|
|
|
- } term_mac;
|
|
|
- struct {
|
|
|
- __be16 eth_type;
|
|
|
- __be32 dst4;
|
|
|
- __be32 dst4_mask;
|
|
|
- enum rocker_of_dpa_table_id goto_tbl;
|
|
|
- u32 group_id;
|
|
|
- } ucast_routing;
|
|
|
- struct {
|
|
|
- u8 eth_dst[ETH_ALEN];
|
|
|
- u8 eth_dst_mask[ETH_ALEN];
|
|
|
- int has_eth_dst;
|
|
|
- int has_eth_dst_mask;
|
|
|
- __be16 vlan_id;
|
|
|
- u32 tunnel_id;
|
|
|
- enum rocker_of_dpa_table_id goto_tbl;
|
|
|
- u32 group_id;
|
|
|
- bool copy_to_cpu;
|
|
|
- } bridge;
|
|
|
- struct {
|
|
|
- u32 in_pport;
|
|
|
- u32 in_pport_mask;
|
|
|
- u8 eth_src[ETH_ALEN];
|
|
|
- u8 eth_src_mask[ETH_ALEN];
|
|
|
- u8 eth_dst[ETH_ALEN];
|
|
|
- u8 eth_dst_mask[ETH_ALEN];
|
|
|
- __be16 eth_type;
|
|
|
- __be16 vlan_id;
|
|
|
- __be16 vlan_id_mask;
|
|
|
- u8 ip_proto;
|
|
|
- u8 ip_proto_mask;
|
|
|
- u8 ip_tos;
|
|
|
- u8 ip_tos_mask;
|
|
|
- u32 group_id;
|
|
|
- } acl;
|
|
|
- };
|
|
|
-};
|
|
|
-
|
|
|
-struct rocker_flow_tbl_entry {
|
|
|
- struct hlist_node entry;
|
|
|
- u32 cmd;
|
|
|
- u64 cookie;
|
|
|
- struct rocker_flow_tbl_key key;
|
|
|
- size_t key_len;
|
|
|
- u32 key_crc32; /* key */
|
|
|
-};
|
|
|
-
|
|
|
-struct rocker_group_tbl_entry {
|
|
|
- struct hlist_node entry;
|
|
|
- u32 cmd;
|
|
|
- u32 group_id; /* key */
|
|
|
- u16 group_count;
|
|
|
- u32 *group_ids;
|
|
|
- union {
|
|
|
- struct {
|
|
|
- u8 pop_vlan;
|
|
|
- } l2_interface;
|
|
|
- struct {
|
|
|
- u8 eth_src[ETH_ALEN];
|
|
|
- u8 eth_dst[ETH_ALEN];
|
|
|
- __be16 vlan_id;
|
|
|
- u32 group_id;
|
|
|
- } l2_rewrite;
|
|
|
- struct {
|
|
|
- u8 eth_src[ETH_ALEN];
|
|
|
- u8 eth_dst[ETH_ALEN];
|
|
|
- __be16 vlan_id;
|
|
|
- bool ttl_check;
|
|
|
- u32 group_id;
|
|
|
- } l3_unicast;
|
|
|
- };
|
|
|
-};
|
|
|
-
|
|
|
-struct rocker_fdb_tbl_entry {
|
|
|
- struct hlist_node entry;
|
|
|
- u32 key_crc32; /* key */
|
|
|
- bool learned;
|
|
|
- unsigned long touched;
|
|
|
- struct rocker_fdb_tbl_key {
|
|
|
- struct rocker_port *rocker_port;
|
|
|
- u8 addr[ETH_ALEN];
|
|
|
- __be16 vlan_id;
|
|
|
- } key;
|
|
|
-};
|
|
|
-
|
|
|
-struct rocker_internal_vlan_tbl_entry {
|
|
|
- struct hlist_node entry;
|
|
|
- int ifindex; /* key */
|
|
|
- u32 ref_count;
|
|
|
- __be16 vlan_id;
|
|
|
-};
|
|
|
-
|
|
|
-struct rocker_neigh_tbl_entry {
|
|
|
- struct hlist_node entry;
|
|
|
- __be32 ip_addr; /* key */
|
|
|
- struct net_device *dev;
|
|
|
- u32 ref_count;
|
|
|
- u32 index;
|
|
|
- u8 eth_dst[ETH_ALEN];
|
|
|
- bool ttl_check;
|
|
|
-};
|
|
|
-
|
|
|
-static const u8 zero_mac[ETH_ALEN] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
|
|
|
-static const u8 ff_mac[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
|
|
|
-static const u8 ll_mac[ETH_ALEN] = { 0x01, 0x80, 0xc2, 0x00, 0x00, 0x00 };
|
|
|
-static const u8 ll_mask[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0 };
|
|
|
-static const u8 mcast_mac[ETH_ALEN] = { 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 };
|
|
|
-static const u8 ipv4_mcast[ETH_ALEN] = { 0x01, 0x00, 0x5e, 0x00, 0x00, 0x00 };
|
|
|
-static const u8 ipv4_mask[ETH_ALEN] = { 0xff, 0xff, 0xff, 0x80, 0x00, 0x00 };
|
|
|
-static const u8 ipv6_mcast[ETH_ALEN] = { 0x33, 0x33, 0x00, 0x00, 0x00, 0x00 };
|
|
|
-static const u8 ipv6_mask[ETH_ALEN] = { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 };
|
|
|
-
|
|
|
-/* Rocker priority levels for flow table entries. Higher
|
|
|
- * priority match takes precedence over lower priority match.
|
|
|
- */
|
|
|
-
|
|
|
-enum {
|
|
|
- ROCKER_PRIORITY_UNKNOWN = 0,
|
|
|
- ROCKER_PRIORITY_IG_PORT = 1,
|
|
|
- ROCKER_PRIORITY_VLAN = 1,
|
|
|
- ROCKER_PRIORITY_TERM_MAC_UCAST = 0,
|
|
|
- ROCKER_PRIORITY_TERM_MAC_MCAST = 1,
|
|
|
- ROCKER_PRIORITY_BRIDGING_VLAN_DFLT_EXACT = 1,
|
|
|
- ROCKER_PRIORITY_BRIDGING_VLAN_DFLT_WILD = 2,
|
|
|
- ROCKER_PRIORITY_BRIDGING_VLAN = 3,
|
|
|
- ROCKER_PRIORITY_BRIDGING_TENANT_DFLT_EXACT = 1,
|
|
|
- ROCKER_PRIORITY_BRIDGING_TENANT_DFLT_WILD = 2,
|
|
|
- ROCKER_PRIORITY_BRIDGING_TENANT = 3,
|
|
|
- ROCKER_PRIORITY_ACL_CTRL = 3,
|
|
|
- ROCKER_PRIORITY_ACL_NORMAL = 2,
|
|
|
- ROCKER_PRIORITY_ACL_DFLT = 1,
|
|
|
-};
|
|
|
-
|
|
|
-static bool rocker_vlan_id_is_internal(__be16 vlan_id)
|
|
|
-{
|
|
|
- u16 start = ROCKER_INTERNAL_VLAN_ID_BASE;
|
|
|
- u16 end = 0xffe;
|
|
|
- u16 _vlan_id = ntohs(vlan_id);
|
|
|
-
|
|
|
- return (_vlan_id >= start && _vlan_id <= end);
|
|
|
-}
|
|
|
-
|
|
|
-static __be16 rocker_port_vid_to_vlan(const struct rocker_port *rocker_port,
|
|
|
- u16 vid, bool *pop_vlan)
|
|
|
-{
|
|
|
- __be16 vlan_id;
|
|
|
-
|
|
|
- if (pop_vlan)
|
|
|
- *pop_vlan = false;
|
|
|
- vlan_id = htons(vid);
|
|
|
- if (!vlan_id) {
|
|
|
- vlan_id = rocker_port->internal_vlan_id;
|
|
|
- if (pop_vlan)
|
|
|
- *pop_vlan = true;
|
|
|
- }
|
|
|
-
|
|
|
- return vlan_id;
|
|
|
-}
|
|
|
-
|
|
|
-static u16 rocker_port_vlan_to_vid(const struct rocker_port *rocker_port,
|
|
|
- __be16 vlan_id)
|
|
|
-{
|
|
|
- if (rocker_vlan_id_is_internal(vlan_id))
|
|
|
- return 0;
|
|
|
-
|
|
|
- return ntohs(vlan_id);
|
|
|
-}
|
|
|
-
|
|
|
-static bool rocker_port_is_bridged(const struct rocker_port *rocker_port)
|
|
|
-{
|
|
|
- return rocker_port->bridge_dev &&
|
|
|
- netif_is_bridge_master(rocker_port->bridge_dev);
|
|
|
-}
|
|
|
-
|
|
|
-static bool rocker_port_is_ovsed(const struct rocker_port *rocker_port)
|
|
|
-{
|
|
|
- return rocker_port->bridge_dev &&
|
|
|
- netif_is_ovs_master(rocker_port->bridge_dev);
|
|
|
-}
|
|
|
-
|
|
|
-#define ROCKER_OP_FLAG_REMOVE BIT(0)
|
|
|
-#define ROCKER_OP_FLAG_NOWAIT BIT(1)
|
|
|
-#define ROCKER_OP_FLAG_LEARNED BIT(2)
|
|
|
-#define ROCKER_OP_FLAG_REFRESH BIT(3)
|
|
|
-
|
|
|
-static bool rocker_flags_nowait(int flags)
|
|
|
-{
|
|
|
- return flags & ROCKER_OP_FLAG_NOWAIT;
|
|
|
-}
|
|
|
-
|
|
|
-static void *__rocker_mem_alloc(struct switchdev_trans *trans, int flags,
|
|
|
- size_t size)
|
|
|
-{
|
|
|
- struct switchdev_trans_item *elem = NULL;
|
|
|
- gfp_t gfp_flags = (flags & ROCKER_OP_FLAG_NOWAIT) ?
|
|
|
- GFP_ATOMIC : GFP_KERNEL;
|
|
|
-
|
|
|
- /* If in transaction prepare phase, allocate the memory
|
|
|
- * and enqueue it on a transaction. If in transaction
|
|
|
- * commit phase, dequeue the memory from the transaction
|
|
|
- * rather than re-allocating the memory. The idea is the
|
|
|
- * driver code paths for prepare and commit are identical
|
|
|
- * so the memory allocated in the prepare phase is the
|
|
|
- * memory used in the commit phase.
|
|
|
- */
|
|
|
-
|
|
|
- if (!trans) {
|
|
|
- elem = kzalloc(size + sizeof(*elem), gfp_flags);
|
|
|
- } else if (switchdev_trans_ph_prepare(trans)) {
|
|
|
- elem = kzalloc(size + sizeof(*elem), gfp_flags);
|
|
|
- if (!elem)
|
|
|
- return NULL;
|
|
|
- switchdev_trans_item_enqueue(trans, elem, kfree, elem);
|
|
|
- } else {
|
|
|
- elem = switchdev_trans_item_dequeue(trans);
|
|
|
- }
|
|
|
-
|
|
|
- return elem ? elem + 1 : NULL;
|
|
|
-}
|
|
|
-
|
|
|
-static void *rocker_kzalloc(struct switchdev_trans *trans, int flags,
|
|
|
- size_t size)
|
|
|
-{
|
|
|
- return __rocker_mem_alloc(trans, flags, size);
|
|
|
-}
|
|
|
-
|
|
|
-static void *rocker_kcalloc(struct switchdev_trans *trans, int flags,
|
|
|
- size_t n, size_t size)
|
|
|
-{
|
|
|
- return __rocker_mem_alloc(trans, flags, n * size);
|
|
|
-}
|
|
|
-
|
|
|
-static void rocker_kfree(struct switchdev_trans *trans, const void *mem)
|
|
|
-{
|
|
|
- struct switchdev_trans_item *elem;
|
|
|
-
|
|
|
- /* Frees are ignored if in transaction prepare phase. The
|
|
|
- * memory remains on the per-port list until freed in the
|
|
|
- * commit phase.
|
|
|
- */
|
|
|
-
|
|
|
- if (switchdev_trans_ph_prepare(trans))
|
|
|
- return;
|
|
|
-
|
|
|
- elem = (struct switchdev_trans_item *) mem - 1;
|
|
|
- kfree(elem);
|
|
|
-}
|
|
|
-
|
|
|
struct rocker_wait {
|
|
|
wait_queue_head_t wait;
|
|
|
bool done;
|
|
@@ -1216,10 +937,6 @@ static int rocker_event_link_change(const struct rocker *rocker,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static int rocker_port_fdb(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans,
|
|
|
- const unsigned char *addr,
|
|
|
- __be16 vlan_id, int flags);
|
|
|
static int rocker_world_port_ev_mac_vlan_seen(struct rocker_port *rocker_port,
|
|
|
const unsigned char *addr,
|
|
|
__be16 vlan_id);
|
|
@@ -1231,9 +948,7 @@ static int rocker_event_mac_vlan_seen(const struct rocker *rocker,
|
|
|
unsigned int port_number;
|
|
|
struct rocker_port *rocker_port;
|
|
|
const unsigned char *addr;
|
|
|
- int flags = ROCKER_OP_FLAG_NOWAIT | ROCKER_OP_FLAG_LEARNED;
|
|
|
__be16 vlan_id;
|
|
|
- int err;
|
|
|
|
|
|
rocker_tlv_parse_nested(attrs, ROCKER_TLV_EVENT_MAC_VLAN_MAX, info);
|
|
|
if (!attrs[ROCKER_TLV_EVENT_MAC_VLAN_PPORT] ||
|
|
@@ -1249,16 +964,7 @@ static int rocker_event_mac_vlan_seen(const struct rocker *rocker,
|
|
|
return -EINVAL;
|
|
|
|
|
|
rocker_port = rocker->ports[port_number];
|
|
|
-
|
|
|
- err = rocker_world_port_ev_mac_vlan_seen(rocker_port, addr, vlan_id);
|
|
|
- if (err)
|
|
|
- return err;
|
|
|
-
|
|
|
- if (rocker_port->stp_state != BR_STATE_LEARNING &&
|
|
|
- rocker_port->stp_state != BR_STATE_FORWARDING)
|
|
|
- return 0;
|
|
|
-
|
|
|
- return rocker_port_fdb(rocker_port, NULL, addr, vlan_id, flags);
|
|
|
+ return rocker_world_port_ev_mac_vlan_seen(rocker_port, addr, vlan_id);
|
|
|
}
|
|
|
|
|
|
static int rocker_event_process(const struct rocker *rocker,
|
|
@@ -1334,17 +1040,9 @@ static irqreturn_t rocker_rx_irq_handler(int irq, void *dev_id)
|
|
|
* Command interface
|
|
|
********************/
|
|
|
|
|
|
-typedef int (*rocker_cmd_prep_cb_t)(const struct rocker_port *rocker_port,
|
|
|
- struct rocker_desc_info *desc_info,
|
|
|
- void *priv);
|
|
|
-
|
|
|
-typedef int (*rocker_cmd_proc_cb_t)(const struct rocker_port *rocker_port,
|
|
|
- const struct rocker_desc_info *desc_info,
|
|
|
- void *priv);
|
|
|
-
|
|
|
-static int rocker_cmd_exec(struct rocker_port *rocker_port, bool nowait,
|
|
|
- rocker_cmd_prep_cb_t prepare, void *prepare_priv,
|
|
|
- rocker_cmd_proc_cb_t process, void *process_priv)
|
|
|
+int rocker_cmd_exec(struct rocker_port *rocker_port, bool nowait,
|
|
|
+ rocker_cmd_prep_cb_t prepare, void *prepare_priv,
|
|
|
+ rocker_cmd_proc_cb_t process, void *process_priv)
|
|
|
{
|
|
|
struct rocker *rocker = rocker_port->rocker;
|
|
|
struct rocker_desc_info *desc_info;
|
|
@@ -1698,8 +1396,8 @@ static int rocker_cmd_set_port_settings_mtu(struct rocker_port *rocker_port,
|
|
|
&mtu, NULL, NULL);
|
|
|
}
|
|
|
|
|
|
-static int rocker_port_set_learning(struct rocker_port *rocker_port,
|
|
|
- bool learning)
|
|
|
+int rocker_port_set_learning(struct rocker_port *rocker_port,
|
|
|
+ bool learning)
|
|
|
{
|
|
|
return rocker_cmd_exec(rocker_port, false,
|
|
|
rocker_cmd_set_port_learning_prep,
|
|
@@ -2035,2283 +1733,145 @@ static int rocker_world_port_ev_mac_vlan_seen(struct rocker_port *rocker_port,
|
|
|
return wops->port_ev_mac_vlan_seen(rocker_port, addr, vlan_id);
|
|
|
}
|
|
|
|
|
|
-static int
|
|
|
-rocker_cmd_flow_tbl_add_ig_port(struct rocker_desc_info *desc_info,
|
|
|
- const struct rocker_flow_tbl_entry *entry)
|
|
|
+/*****************
|
|
|
+ * Net device ops
|
|
|
+ *****************/
|
|
|
+
|
|
|
+static int rocker_port_open(struct net_device *dev)
|
|
|
{
|
|
|
- if (rocker_tlv_put_u32(desc_info, ROCKER_TLV_OF_DPA_IN_PPORT,
|
|
|
- entry->key.ig_port.in_pport))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u32(desc_info, ROCKER_TLV_OF_DPA_IN_PPORT_MASK,
|
|
|
- entry->key.ig_port.in_pport_mask))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u16(desc_info, ROCKER_TLV_OF_DPA_GOTO_TABLE_ID,
|
|
|
- entry->key.ig_port.goto_tbl))
|
|
|
- return -EMSGSIZE;
|
|
|
+ struct rocker_port *rocker_port = netdev_priv(dev);
|
|
|
+ int err;
|
|
|
|
|
|
- return 0;
|
|
|
-}
|
|
|
+ err = rocker_port_dma_rings_init(rocker_port);
|
|
|
+ if (err)
|
|
|
+ return err;
|
|
|
|
|
|
-static int
|
|
|
-rocker_cmd_flow_tbl_add_vlan(struct rocker_desc_info *desc_info,
|
|
|
- const struct rocker_flow_tbl_entry *entry)
|
|
|
-{
|
|
|
- if (rocker_tlv_put_u32(desc_info, ROCKER_TLV_OF_DPA_IN_PPORT,
|
|
|
- entry->key.vlan.in_pport))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_be16(desc_info, ROCKER_TLV_OF_DPA_VLAN_ID,
|
|
|
- entry->key.vlan.vlan_id))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_be16(desc_info, ROCKER_TLV_OF_DPA_VLAN_ID_MASK,
|
|
|
- entry->key.vlan.vlan_id_mask))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u16(desc_info, ROCKER_TLV_OF_DPA_GOTO_TABLE_ID,
|
|
|
- entry->key.vlan.goto_tbl))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (entry->key.vlan.untagged &&
|
|
|
- rocker_tlv_put_be16(desc_info, ROCKER_TLV_OF_DPA_NEW_VLAN_ID,
|
|
|
- entry->key.vlan.new_vlan_id))
|
|
|
- return -EMSGSIZE;
|
|
|
+ err = request_irq(rocker_msix_tx_vector(rocker_port),
|
|
|
+ rocker_tx_irq_handler, 0,
|
|
|
+ rocker_driver_name, rocker_port);
|
|
|
+ if (err) {
|
|
|
+ netdev_err(rocker_port->dev, "cannot assign tx irq\n");
|
|
|
+ goto err_request_tx_irq;
|
|
|
+ }
|
|
|
|
|
|
- return 0;
|
|
|
-}
|
|
|
+ err = request_irq(rocker_msix_rx_vector(rocker_port),
|
|
|
+ rocker_rx_irq_handler, 0,
|
|
|
+ rocker_driver_name, rocker_port);
|
|
|
+ if (err) {
|
|
|
+ netdev_err(rocker_port->dev, "cannot assign rx irq\n");
|
|
|
+ goto err_request_rx_irq;
|
|
|
+ }
|
|
|
|
|
|
-static int
|
|
|
-rocker_cmd_flow_tbl_add_term_mac(struct rocker_desc_info *desc_info,
|
|
|
- const struct rocker_flow_tbl_entry *entry)
|
|
|
-{
|
|
|
- if (rocker_tlv_put_u32(desc_info, ROCKER_TLV_OF_DPA_IN_PPORT,
|
|
|
- entry->key.term_mac.in_pport))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u32(desc_info, ROCKER_TLV_OF_DPA_IN_PPORT_MASK,
|
|
|
- entry->key.term_mac.in_pport_mask))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_be16(desc_info, ROCKER_TLV_OF_DPA_ETHERTYPE,
|
|
|
- entry->key.term_mac.eth_type))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put(desc_info, ROCKER_TLV_OF_DPA_DST_MAC,
|
|
|
- ETH_ALEN, entry->key.term_mac.eth_dst))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put(desc_info, ROCKER_TLV_OF_DPA_DST_MAC_MASK,
|
|
|
- ETH_ALEN, entry->key.term_mac.eth_dst_mask))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_be16(desc_info, ROCKER_TLV_OF_DPA_VLAN_ID,
|
|
|
- entry->key.term_mac.vlan_id))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_be16(desc_info, ROCKER_TLV_OF_DPA_VLAN_ID_MASK,
|
|
|
- entry->key.term_mac.vlan_id_mask))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u16(desc_info, ROCKER_TLV_OF_DPA_GOTO_TABLE_ID,
|
|
|
- entry->key.term_mac.goto_tbl))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (entry->key.term_mac.copy_to_cpu &&
|
|
|
- rocker_tlv_put_u8(desc_info, ROCKER_TLV_OF_DPA_COPY_CPU_ACTION,
|
|
|
- entry->key.term_mac.copy_to_cpu))
|
|
|
- return -EMSGSIZE;
|
|
|
+ err = rocker_world_port_open(rocker_port);
|
|
|
+ if (err) {
|
|
|
+ netdev_err(rocker_port->dev, "cannot open port in world\n");
|
|
|
+ goto err_world_port_open;
|
|
|
+ }
|
|
|
|
|
|
+ napi_enable(&rocker_port->napi_tx);
|
|
|
+ napi_enable(&rocker_port->napi_rx);
|
|
|
+ if (!dev->proto_down)
|
|
|
+ rocker_port_set_enable(rocker_port, true);
|
|
|
+ netif_start_queue(dev);
|
|
|
return 0;
|
|
|
+
|
|
|
+err_world_port_open:
|
|
|
+ free_irq(rocker_msix_rx_vector(rocker_port), rocker_port);
|
|
|
+err_request_rx_irq:
|
|
|
+ free_irq(rocker_msix_tx_vector(rocker_port), rocker_port);
|
|
|
+err_request_tx_irq:
|
|
|
+ rocker_port_dma_rings_fini(rocker_port);
|
|
|
+ return err;
|
|
|
}
|
|
|
|
|
|
-static int
|
|
|
-rocker_cmd_flow_tbl_add_ucast_routing(struct rocker_desc_info *desc_info,
|
|
|
- const struct rocker_flow_tbl_entry *entry)
|
|
|
+static int rocker_port_stop(struct net_device *dev)
|
|
|
{
|
|
|
- if (rocker_tlv_put_be16(desc_info, ROCKER_TLV_OF_DPA_ETHERTYPE,
|
|
|
- entry->key.ucast_routing.eth_type))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_be32(desc_info, ROCKER_TLV_OF_DPA_DST_IP,
|
|
|
- entry->key.ucast_routing.dst4))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_be32(desc_info, ROCKER_TLV_OF_DPA_DST_IP_MASK,
|
|
|
- entry->key.ucast_routing.dst4_mask))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u16(desc_info, ROCKER_TLV_OF_DPA_GOTO_TABLE_ID,
|
|
|
- entry->key.ucast_routing.goto_tbl))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u32(desc_info, ROCKER_TLV_OF_DPA_GROUP_ID,
|
|
|
- entry->key.ucast_routing.group_id))
|
|
|
- return -EMSGSIZE;
|
|
|
+ struct rocker_port *rocker_port = netdev_priv(dev);
|
|
|
+
|
|
|
+ netif_stop_queue(dev);
|
|
|
+ rocker_port_set_enable(rocker_port, false);
|
|
|
+ napi_disable(&rocker_port->napi_rx);
|
|
|
+ napi_disable(&rocker_port->napi_tx);
|
|
|
+ rocker_world_port_stop(rocker_port);
|
|
|
+ free_irq(rocker_msix_rx_vector(rocker_port), rocker_port);
|
|
|
+ free_irq(rocker_msix_tx_vector(rocker_port), rocker_port);
|
|
|
+ rocker_port_dma_rings_fini(rocker_port);
|
|
|
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static int
|
|
|
-rocker_cmd_flow_tbl_add_bridge(struct rocker_desc_info *desc_info,
|
|
|
- const struct rocker_flow_tbl_entry *entry)
|
|
|
+static void rocker_tx_desc_frags_unmap(const struct rocker_port *rocker_port,
|
|
|
+ const struct rocker_desc_info *desc_info)
|
|
|
{
|
|
|
- if (entry->key.bridge.has_eth_dst &&
|
|
|
- rocker_tlv_put(desc_info, ROCKER_TLV_OF_DPA_DST_MAC,
|
|
|
- ETH_ALEN, entry->key.bridge.eth_dst))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (entry->key.bridge.has_eth_dst_mask &&
|
|
|
- rocker_tlv_put(desc_info, ROCKER_TLV_OF_DPA_DST_MAC_MASK,
|
|
|
- ETH_ALEN, entry->key.bridge.eth_dst_mask))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (entry->key.bridge.vlan_id &&
|
|
|
- rocker_tlv_put_be16(desc_info, ROCKER_TLV_OF_DPA_VLAN_ID,
|
|
|
- entry->key.bridge.vlan_id))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (entry->key.bridge.tunnel_id &&
|
|
|
- rocker_tlv_put_u32(desc_info, ROCKER_TLV_OF_DPA_TUNNEL_ID,
|
|
|
- entry->key.bridge.tunnel_id))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u16(desc_info, ROCKER_TLV_OF_DPA_GOTO_TABLE_ID,
|
|
|
- entry->key.bridge.goto_tbl))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u32(desc_info, ROCKER_TLV_OF_DPA_GROUP_ID,
|
|
|
- entry->key.bridge.group_id))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (entry->key.bridge.copy_to_cpu &&
|
|
|
- rocker_tlv_put_u8(desc_info, ROCKER_TLV_OF_DPA_COPY_CPU_ACTION,
|
|
|
- entry->key.bridge.copy_to_cpu))
|
|
|
- return -EMSGSIZE;
|
|
|
+ const struct rocker *rocker = rocker_port->rocker;
|
|
|
+ struct pci_dev *pdev = rocker->pdev;
|
|
|
+ const struct rocker_tlv *attrs[ROCKER_TLV_TX_MAX + 1];
|
|
|
+ struct rocker_tlv *attr;
|
|
|
+ int rem;
|
|
|
|
|
|
- return 0;
|
|
|
+ rocker_tlv_parse_desc(attrs, ROCKER_TLV_TX_MAX, desc_info);
|
|
|
+ if (!attrs[ROCKER_TLV_TX_FRAGS])
|
|
|
+ return;
|
|
|
+ rocker_tlv_for_each_nested(attr, attrs[ROCKER_TLV_TX_FRAGS], rem) {
|
|
|
+ const struct rocker_tlv *frag_attrs[ROCKER_TLV_TX_FRAG_ATTR_MAX + 1];
|
|
|
+ dma_addr_t dma_handle;
|
|
|
+ size_t len;
|
|
|
+
|
|
|
+ if (rocker_tlv_type(attr) != ROCKER_TLV_TX_FRAG)
|
|
|
+ continue;
|
|
|
+ rocker_tlv_parse_nested(frag_attrs, ROCKER_TLV_TX_FRAG_ATTR_MAX,
|
|
|
+ attr);
|
|
|
+ if (!frag_attrs[ROCKER_TLV_TX_FRAG_ATTR_ADDR] ||
|
|
|
+ !frag_attrs[ROCKER_TLV_TX_FRAG_ATTR_LEN])
|
|
|
+ continue;
|
|
|
+ dma_handle = rocker_tlv_get_u64(frag_attrs[ROCKER_TLV_TX_FRAG_ATTR_ADDR]);
|
|
|
+ len = rocker_tlv_get_u16(frag_attrs[ROCKER_TLV_TX_FRAG_ATTR_LEN]);
|
|
|
+ pci_unmap_single(pdev, dma_handle, len, DMA_TO_DEVICE);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
-static int
|
|
|
-rocker_cmd_flow_tbl_add_acl(struct rocker_desc_info *desc_info,
|
|
|
- const struct rocker_flow_tbl_entry *entry)
|
|
|
+static int rocker_tx_desc_frag_map_put(const struct rocker_port *rocker_port,
|
|
|
+ struct rocker_desc_info *desc_info,
|
|
|
+ char *buf, size_t buf_len)
|
|
|
{
|
|
|
- if (rocker_tlv_put_u32(desc_info, ROCKER_TLV_OF_DPA_IN_PPORT,
|
|
|
- entry->key.acl.in_pport))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u32(desc_info, ROCKER_TLV_OF_DPA_IN_PPORT_MASK,
|
|
|
- entry->key.acl.in_pport_mask))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put(desc_info, ROCKER_TLV_OF_DPA_SRC_MAC,
|
|
|
- ETH_ALEN, entry->key.acl.eth_src))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put(desc_info, ROCKER_TLV_OF_DPA_SRC_MAC_MASK,
|
|
|
- ETH_ALEN, entry->key.acl.eth_src_mask))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put(desc_info, ROCKER_TLV_OF_DPA_DST_MAC,
|
|
|
- ETH_ALEN, entry->key.acl.eth_dst))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put(desc_info, ROCKER_TLV_OF_DPA_DST_MAC_MASK,
|
|
|
- ETH_ALEN, entry->key.acl.eth_dst_mask))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_be16(desc_info, ROCKER_TLV_OF_DPA_ETHERTYPE,
|
|
|
- entry->key.acl.eth_type))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_be16(desc_info, ROCKER_TLV_OF_DPA_VLAN_ID,
|
|
|
- entry->key.acl.vlan_id))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_be16(desc_info, ROCKER_TLV_OF_DPA_VLAN_ID_MASK,
|
|
|
- entry->key.acl.vlan_id_mask))
|
|
|
- return -EMSGSIZE;
|
|
|
+ const struct rocker *rocker = rocker_port->rocker;
|
|
|
+ struct pci_dev *pdev = rocker->pdev;
|
|
|
+ dma_addr_t dma_handle;
|
|
|
+ struct rocker_tlv *frag;
|
|
|
|
|
|
- switch (ntohs(entry->key.acl.eth_type)) {
|
|
|
- case ETH_P_IP:
|
|
|
- case ETH_P_IPV6:
|
|
|
- if (rocker_tlv_put_u8(desc_info, ROCKER_TLV_OF_DPA_IP_PROTO,
|
|
|
- entry->key.acl.ip_proto))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u8(desc_info,
|
|
|
- ROCKER_TLV_OF_DPA_IP_PROTO_MASK,
|
|
|
- entry->key.acl.ip_proto_mask))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u8(desc_info, ROCKER_TLV_OF_DPA_IP_DSCP,
|
|
|
- entry->key.acl.ip_tos & 0x3f))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u8(desc_info,
|
|
|
- ROCKER_TLV_OF_DPA_IP_DSCP_MASK,
|
|
|
- entry->key.acl.ip_tos_mask & 0x3f))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u8(desc_info, ROCKER_TLV_OF_DPA_IP_ECN,
|
|
|
- (entry->key.acl.ip_tos & 0xc0) >> 6))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u8(desc_info,
|
|
|
- ROCKER_TLV_OF_DPA_IP_ECN_MASK,
|
|
|
- (entry->key.acl.ip_tos_mask & 0xc0) >> 6))
|
|
|
- return -EMSGSIZE;
|
|
|
- break;
|
|
|
+ dma_handle = pci_map_single(pdev, buf, buf_len, DMA_TO_DEVICE);
|
|
|
+ if (unlikely(pci_dma_mapping_error(pdev, dma_handle))) {
|
|
|
+ if (net_ratelimit())
|
|
|
+ netdev_err(rocker_port->dev, "failed to dma map tx frag\n");
|
|
|
+ return -EIO;
|
|
|
}
|
|
|
-
|
|
|
- if (entry->key.acl.group_id != ROCKER_GROUP_NONE &&
|
|
|
- rocker_tlv_put_u32(desc_info, ROCKER_TLV_OF_DPA_GROUP_ID,
|
|
|
- entry->key.acl.group_id))
|
|
|
- return -EMSGSIZE;
|
|
|
-
|
|
|
+ frag = rocker_tlv_nest_start(desc_info, ROCKER_TLV_TX_FRAG);
|
|
|
+ if (!frag)
|
|
|
+ goto unmap_frag;
|
|
|
+ if (rocker_tlv_put_u64(desc_info, ROCKER_TLV_TX_FRAG_ATTR_ADDR,
|
|
|
+ dma_handle))
|
|
|
+ goto nest_cancel;
|
|
|
+ if (rocker_tlv_put_u16(desc_info, ROCKER_TLV_TX_FRAG_ATTR_LEN,
|
|
|
+ buf_len))
|
|
|
+ goto nest_cancel;
|
|
|
+ rocker_tlv_nest_end(desc_info, frag);
|
|
|
return 0;
|
|
|
+
|
|
|
+nest_cancel:
|
|
|
+ rocker_tlv_nest_cancel(desc_info, frag);
|
|
|
+unmap_frag:
|
|
|
+ pci_unmap_single(pdev, dma_handle, buf_len, DMA_TO_DEVICE);
|
|
|
+ return -EMSGSIZE;
|
|
|
}
|
|
|
|
|
|
-static int rocker_cmd_flow_tbl_add(const struct rocker_port *rocker_port,
|
|
|
- struct rocker_desc_info *desc_info,
|
|
|
- void *priv)
|
|
|
+static netdev_tx_t rocker_port_xmit(struct sk_buff *skb, struct net_device *dev)
|
|
|
{
|
|
|
- const struct rocker_flow_tbl_entry *entry = priv;
|
|
|
- struct rocker_tlv *cmd_info;
|
|
|
- int err = 0;
|
|
|
-
|
|
|
- if (rocker_tlv_put_u16(desc_info, ROCKER_TLV_CMD_TYPE, entry->cmd))
|
|
|
- return -EMSGSIZE;
|
|
|
- cmd_info = rocker_tlv_nest_start(desc_info, ROCKER_TLV_CMD_INFO);
|
|
|
- if (!cmd_info)
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u16(desc_info, ROCKER_TLV_OF_DPA_TABLE_ID,
|
|
|
- entry->key.tbl_id))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u32(desc_info, ROCKER_TLV_OF_DPA_PRIORITY,
|
|
|
- entry->key.priority))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u32(desc_info, ROCKER_TLV_OF_DPA_HARDTIME, 0))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u64(desc_info, ROCKER_TLV_OF_DPA_COOKIE,
|
|
|
- entry->cookie))
|
|
|
- return -EMSGSIZE;
|
|
|
-
|
|
|
- switch (entry->key.tbl_id) {
|
|
|
- case ROCKER_OF_DPA_TABLE_ID_INGRESS_PORT:
|
|
|
- err = rocker_cmd_flow_tbl_add_ig_port(desc_info, entry);
|
|
|
- break;
|
|
|
- case ROCKER_OF_DPA_TABLE_ID_VLAN:
|
|
|
- err = rocker_cmd_flow_tbl_add_vlan(desc_info, entry);
|
|
|
- break;
|
|
|
- case ROCKER_OF_DPA_TABLE_ID_TERMINATION_MAC:
|
|
|
- err = rocker_cmd_flow_tbl_add_term_mac(desc_info, entry);
|
|
|
- break;
|
|
|
- case ROCKER_OF_DPA_TABLE_ID_UNICAST_ROUTING:
|
|
|
- err = rocker_cmd_flow_tbl_add_ucast_routing(desc_info, entry);
|
|
|
- break;
|
|
|
- case ROCKER_OF_DPA_TABLE_ID_BRIDGING:
|
|
|
- err = rocker_cmd_flow_tbl_add_bridge(desc_info, entry);
|
|
|
- break;
|
|
|
- case ROCKER_OF_DPA_TABLE_ID_ACL_POLICY:
|
|
|
- err = rocker_cmd_flow_tbl_add_acl(desc_info, entry);
|
|
|
- break;
|
|
|
- default:
|
|
|
- err = -ENOTSUPP;
|
|
|
- break;
|
|
|
- }
|
|
|
-
|
|
|
- if (err)
|
|
|
- return err;
|
|
|
-
|
|
|
- rocker_tlv_nest_end(desc_info, cmd_info);
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_cmd_flow_tbl_del(const struct rocker_port *rocker_port,
|
|
|
- struct rocker_desc_info *desc_info,
|
|
|
- void *priv)
|
|
|
-{
|
|
|
- const struct rocker_flow_tbl_entry *entry = priv;
|
|
|
- struct rocker_tlv *cmd_info;
|
|
|
-
|
|
|
- if (rocker_tlv_put_u16(desc_info, ROCKER_TLV_CMD_TYPE, entry->cmd))
|
|
|
- return -EMSGSIZE;
|
|
|
- cmd_info = rocker_tlv_nest_start(desc_info, ROCKER_TLV_CMD_INFO);
|
|
|
- if (!cmd_info)
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u64(desc_info, ROCKER_TLV_OF_DPA_COOKIE,
|
|
|
- entry->cookie))
|
|
|
- return -EMSGSIZE;
|
|
|
- rocker_tlv_nest_end(desc_info, cmd_info);
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static int
|
|
|
-rocker_cmd_group_tbl_add_l2_interface(struct rocker_desc_info *desc_info,
|
|
|
- struct rocker_group_tbl_entry *entry)
|
|
|
-{
|
|
|
- if (rocker_tlv_put_u32(desc_info, ROCKER_TLV_OF_DPA_OUT_PPORT,
|
|
|
- ROCKER_GROUP_PORT_GET(entry->group_id)))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u8(desc_info, ROCKER_TLV_OF_DPA_POP_VLAN,
|
|
|
- entry->l2_interface.pop_vlan))
|
|
|
- return -EMSGSIZE;
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static int
|
|
|
-rocker_cmd_group_tbl_add_l2_rewrite(struct rocker_desc_info *desc_info,
|
|
|
- const struct rocker_group_tbl_entry *entry)
|
|
|
-{
|
|
|
- if (rocker_tlv_put_u32(desc_info, ROCKER_TLV_OF_DPA_GROUP_ID_LOWER,
|
|
|
- entry->l2_rewrite.group_id))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (!is_zero_ether_addr(entry->l2_rewrite.eth_src) &&
|
|
|
- rocker_tlv_put(desc_info, ROCKER_TLV_OF_DPA_SRC_MAC,
|
|
|
- ETH_ALEN, entry->l2_rewrite.eth_src))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (!is_zero_ether_addr(entry->l2_rewrite.eth_dst) &&
|
|
|
- rocker_tlv_put(desc_info, ROCKER_TLV_OF_DPA_DST_MAC,
|
|
|
- ETH_ALEN, entry->l2_rewrite.eth_dst))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (entry->l2_rewrite.vlan_id &&
|
|
|
- rocker_tlv_put_be16(desc_info, ROCKER_TLV_OF_DPA_VLAN_ID,
|
|
|
- entry->l2_rewrite.vlan_id))
|
|
|
- return -EMSGSIZE;
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static int
|
|
|
-rocker_cmd_group_tbl_add_group_ids(struct rocker_desc_info *desc_info,
|
|
|
- const struct rocker_group_tbl_entry *entry)
|
|
|
-{
|
|
|
- int i;
|
|
|
- struct rocker_tlv *group_ids;
|
|
|
-
|
|
|
- if (rocker_tlv_put_u16(desc_info, ROCKER_TLV_OF_DPA_GROUP_COUNT,
|
|
|
- entry->group_count))
|
|
|
- return -EMSGSIZE;
|
|
|
-
|
|
|
- group_ids = rocker_tlv_nest_start(desc_info,
|
|
|
- ROCKER_TLV_OF_DPA_GROUP_IDS);
|
|
|
- if (!group_ids)
|
|
|
- return -EMSGSIZE;
|
|
|
-
|
|
|
- for (i = 0; i < entry->group_count; i++)
|
|
|
- /* Note TLV array is 1-based */
|
|
|
- if (rocker_tlv_put_u32(desc_info, i + 1, entry->group_ids[i]))
|
|
|
- return -EMSGSIZE;
|
|
|
-
|
|
|
- rocker_tlv_nest_end(desc_info, group_ids);
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static int
|
|
|
-rocker_cmd_group_tbl_add_l3_unicast(struct rocker_desc_info *desc_info,
|
|
|
- const struct rocker_group_tbl_entry *entry)
|
|
|
-{
|
|
|
- if (!is_zero_ether_addr(entry->l3_unicast.eth_src) &&
|
|
|
- rocker_tlv_put(desc_info, ROCKER_TLV_OF_DPA_SRC_MAC,
|
|
|
- ETH_ALEN, entry->l3_unicast.eth_src))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (!is_zero_ether_addr(entry->l3_unicast.eth_dst) &&
|
|
|
- rocker_tlv_put(desc_info, ROCKER_TLV_OF_DPA_DST_MAC,
|
|
|
- ETH_ALEN, entry->l3_unicast.eth_dst))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (entry->l3_unicast.vlan_id &&
|
|
|
- rocker_tlv_put_be16(desc_info, ROCKER_TLV_OF_DPA_VLAN_ID,
|
|
|
- entry->l3_unicast.vlan_id))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u8(desc_info, ROCKER_TLV_OF_DPA_TTL_CHECK,
|
|
|
- entry->l3_unicast.ttl_check))
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u32(desc_info, ROCKER_TLV_OF_DPA_GROUP_ID_LOWER,
|
|
|
- entry->l3_unicast.group_id))
|
|
|
- return -EMSGSIZE;
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_cmd_group_tbl_add(const struct rocker_port *rocker_port,
|
|
|
- struct rocker_desc_info *desc_info,
|
|
|
- void *priv)
|
|
|
-{
|
|
|
- struct rocker_group_tbl_entry *entry = priv;
|
|
|
- struct rocker_tlv *cmd_info;
|
|
|
- int err = 0;
|
|
|
-
|
|
|
- if (rocker_tlv_put_u16(desc_info, ROCKER_TLV_CMD_TYPE, entry->cmd))
|
|
|
- return -EMSGSIZE;
|
|
|
- cmd_info = rocker_tlv_nest_start(desc_info, ROCKER_TLV_CMD_INFO);
|
|
|
- if (!cmd_info)
|
|
|
- return -EMSGSIZE;
|
|
|
-
|
|
|
- if (rocker_tlv_put_u32(desc_info, ROCKER_TLV_OF_DPA_GROUP_ID,
|
|
|
- entry->group_id))
|
|
|
- return -EMSGSIZE;
|
|
|
-
|
|
|
- switch (ROCKER_GROUP_TYPE_GET(entry->group_id)) {
|
|
|
- case ROCKER_OF_DPA_GROUP_TYPE_L2_INTERFACE:
|
|
|
- err = rocker_cmd_group_tbl_add_l2_interface(desc_info, entry);
|
|
|
- break;
|
|
|
- case ROCKER_OF_DPA_GROUP_TYPE_L2_REWRITE:
|
|
|
- err = rocker_cmd_group_tbl_add_l2_rewrite(desc_info, entry);
|
|
|
- break;
|
|
|
- case ROCKER_OF_DPA_GROUP_TYPE_L2_FLOOD:
|
|
|
- case ROCKER_OF_DPA_GROUP_TYPE_L2_MCAST:
|
|
|
- err = rocker_cmd_group_tbl_add_group_ids(desc_info, entry);
|
|
|
- break;
|
|
|
- case ROCKER_OF_DPA_GROUP_TYPE_L3_UCAST:
|
|
|
- err = rocker_cmd_group_tbl_add_l3_unicast(desc_info, entry);
|
|
|
- break;
|
|
|
- default:
|
|
|
- err = -ENOTSUPP;
|
|
|
- break;
|
|
|
- }
|
|
|
-
|
|
|
- if (err)
|
|
|
- return err;
|
|
|
-
|
|
|
- rocker_tlv_nest_end(desc_info, cmd_info);
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_cmd_group_tbl_del(const struct rocker_port *rocker_port,
|
|
|
- struct rocker_desc_info *desc_info,
|
|
|
- void *priv)
|
|
|
-{
|
|
|
- const struct rocker_group_tbl_entry *entry = priv;
|
|
|
- struct rocker_tlv *cmd_info;
|
|
|
-
|
|
|
- if (rocker_tlv_put_u16(desc_info, ROCKER_TLV_CMD_TYPE, entry->cmd))
|
|
|
- return -EMSGSIZE;
|
|
|
- cmd_info = rocker_tlv_nest_start(desc_info, ROCKER_TLV_CMD_INFO);
|
|
|
- if (!cmd_info)
|
|
|
- return -EMSGSIZE;
|
|
|
- if (rocker_tlv_put_u32(desc_info, ROCKER_TLV_OF_DPA_GROUP_ID,
|
|
|
- entry->group_id))
|
|
|
- return -EMSGSIZE;
|
|
|
- rocker_tlv_nest_end(desc_info, cmd_info);
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-/***************************************************
|
|
|
- * Flow, group, FDB, internal VLAN and neigh tables
|
|
|
- ***************************************************/
|
|
|
-
|
|
|
-static int rocker_init_tbls(struct rocker *rocker)
|
|
|
-{
|
|
|
- hash_init(rocker->flow_tbl);
|
|
|
- spin_lock_init(&rocker->flow_tbl_lock);
|
|
|
-
|
|
|
- hash_init(rocker->group_tbl);
|
|
|
- spin_lock_init(&rocker->group_tbl_lock);
|
|
|
-
|
|
|
- hash_init(rocker->fdb_tbl);
|
|
|
- spin_lock_init(&rocker->fdb_tbl_lock);
|
|
|
-
|
|
|
- hash_init(rocker->internal_vlan_tbl);
|
|
|
- spin_lock_init(&rocker->internal_vlan_tbl_lock);
|
|
|
-
|
|
|
- hash_init(rocker->neigh_tbl);
|
|
|
- spin_lock_init(&rocker->neigh_tbl_lock);
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static void rocker_free_tbls(struct rocker *rocker)
|
|
|
-{
|
|
|
- unsigned long flags;
|
|
|
- struct rocker_flow_tbl_entry *flow_entry;
|
|
|
- struct rocker_group_tbl_entry *group_entry;
|
|
|
- struct rocker_fdb_tbl_entry *fdb_entry;
|
|
|
- struct rocker_internal_vlan_tbl_entry *internal_vlan_entry;
|
|
|
- struct rocker_neigh_tbl_entry *neigh_entry;
|
|
|
- struct hlist_node *tmp;
|
|
|
- int bkt;
|
|
|
-
|
|
|
- spin_lock_irqsave(&rocker->flow_tbl_lock, flags);
|
|
|
- hash_for_each_safe(rocker->flow_tbl, bkt, tmp, flow_entry, entry)
|
|
|
- hash_del(&flow_entry->entry);
|
|
|
- spin_unlock_irqrestore(&rocker->flow_tbl_lock, flags);
|
|
|
-
|
|
|
- spin_lock_irqsave(&rocker->group_tbl_lock, flags);
|
|
|
- hash_for_each_safe(rocker->group_tbl, bkt, tmp, group_entry, entry)
|
|
|
- hash_del(&group_entry->entry);
|
|
|
- spin_unlock_irqrestore(&rocker->group_tbl_lock, flags);
|
|
|
-
|
|
|
- spin_lock_irqsave(&rocker->fdb_tbl_lock, flags);
|
|
|
- hash_for_each_safe(rocker->fdb_tbl, bkt, tmp, fdb_entry, entry)
|
|
|
- hash_del(&fdb_entry->entry);
|
|
|
- spin_unlock_irqrestore(&rocker->fdb_tbl_lock, flags);
|
|
|
-
|
|
|
- spin_lock_irqsave(&rocker->internal_vlan_tbl_lock, flags);
|
|
|
- hash_for_each_safe(rocker->internal_vlan_tbl, bkt,
|
|
|
- tmp, internal_vlan_entry, entry)
|
|
|
- hash_del(&internal_vlan_entry->entry);
|
|
|
- spin_unlock_irqrestore(&rocker->internal_vlan_tbl_lock, flags);
|
|
|
-
|
|
|
- spin_lock_irqsave(&rocker->neigh_tbl_lock, flags);
|
|
|
- hash_for_each_safe(rocker->neigh_tbl, bkt, tmp, neigh_entry, entry)
|
|
|
- hash_del(&neigh_entry->entry);
|
|
|
- spin_unlock_irqrestore(&rocker->neigh_tbl_lock, flags);
|
|
|
-}
|
|
|
-
|
|
|
-static struct rocker_flow_tbl_entry *
|
|
|
-rocker_flow_tbl_find(const struct rocker *rocker,
|
|
|
- const struct rocker_flow_tbl_entry *match)
|
|
|
-{
|
|
|
- struct rocker_flow_tbl_entry *found;
|
|
|
- size_t key_len = match->key_len ? match->key_len : sizeof(found->key);
|
|
|
-
|
|
|
- hash_for_each_possible(rocker->flow_tbl, found,
|
|
|
- entry, match->key_crc32) {
|
|
|
- if (memcmp(&found->key, &match->key, key_len) == 0)
|
|
|
- return found;
|
|
|
- }
|
|
|
-
|
|
|
- return NULL;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_flow_tbl_add(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags,
|
|
|
- struct rocker_flow_tbl_entry *match)
|
|
|
-{
|
|
|
- struct rocker *rocker = rocker_port->rocker;
|
|
|
- struct rocker_flow_tbl_entry *found;
|
|
|
- size_t key_len = match->key_len ? match->key_len : sizeof(found->key);
|
|
|
- unsigned long lock_flags;
|
|
|
-
|
|
|
- match->key_crc32 = crc32(~0, &match->key, key_len);
|
|
|
-
|
|
|
- spin_lock_irqsave(&rocker->flow_tbl_lock, lock_flags);
|
|
|
-
|
|
|
- found = rocker_flow_tbl_find(rocker, match);
|
|
|
-
|
|
|
- if (found) {
|
|
|
- match->cookie = found->cookie;
|
|
|
- if (!switchdev_trans_ph_prepare(trans))
|
|
|
- hash_del(&found->entry);
|
|
|
- rocker_kfree(trans, found);
|
|
|
- found = match;
|
|
|
- found->cmd = ROCKER_TLV_CMD_TYPE_OF_DPA_FLOW_MOD;
|
|
|
- } else {
|
|
|
- found = match;
|
|
|
- found->cookie = rocker->flow_tbl_next_cookie++;
|
|
|
- found->cmd = ROCKER_TLV_CMD_TYPE_OF_DPA_FLOW_ADD;
|
|
|
- }
|
|
|
-
|
|
|
- if (!switchdev_trans_ph_prepare(trans))
|
|
|
- hash_add(rocker->flow_tbl, &found->entry, found->key_crc32);
|
|
|
-
|
|
|
- spin_unlock_irqrestore(&rocker->flow_tbl_lock, lock_flags);
|
|
|
-
|
|
|
- if (!switchdev_trans_ph_prepare(trans))
|
|
|
- return rocker_cmd_exec(rocker_port,
|
|
|
- rocker_flags_nowait(flags),
|
|
|
- rocker_cmd_flow_tbl_add,
|
|
|
- found, NULL, NULL);
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_flow_tbl_del(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags,
|
|
|
- struct rocker_flow_tbl_entry *match)
|
|
|
-{
|
|
|
- struct rocker *rocker = rocker_port->rocker;
|
|
|
- struct rocker_flow_tbl_entry *found;
|
|
|
- size_t key_len = match->key_len ? match->key_len : sizeof(found->key);
|
|
|
- unsigned long lock_flags;
|
|
|
- int err = 0;
|
|
|
-
|
|
|
- match->key_crc32 = crc32(~0, &match->key, key_len);
|
|
|
-
|
|
|
- spin_lock_irqsave(&rocker->flow_tbl_lock, lock_flags);
|
|
|
-
|
|
|
- found = rocker_flow_tbl_find(rocker, match);
|
|
|
-
|
|
|
- if (found) {
|
|
|
- if (!switchdev_trans_ph_prepare(trans))
|
|
|
- hash_del(&found->entry);
|
|
|
- found->cmd = ROCKER_TLV_CMD_TYPE_OF_DPA_FLOW_DEL;
|
|
|
- }
|
|
|
-
|
|
|
- spin_unlock_irqrestore(&rocker->flow_tbl_lock, lock_flags);
|
|
|
-
|
|
|
- rocker_kfree(trans, match);
|
|
|
-
|
|
|
- if (found) {
|
|
|
- if (!switchdev_trans_ph_prepare(trans))
|
|
|
- err = rocker_cmd_exec(rocker_port,
|
|
|
- rocker_flags_nowait(flags),
|
|
|
- rocker_cmd_flow_tbl_del,
|
|
|
- found, NULL, NULL);
|
|
|
- rocker_kfree(trans, found);
|
|
|
- }
|
|
|
-
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_flow_tbl_do(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags,
|
|
|
- struct rocker_flow_tbl_entry *entry)
|
|
|
-{
|
|
|
- if (flags & ROCKER_OP_FLAG_REMOVE)
|
|
|
- return rocker_flow_tbl_del(rocker_port, trans, flags, entry);
|
|
|
- else
|
|
|
- return rocker_flow_tbl_add(rocker_port, trans, flags, entry);
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_flow_tbl_ig_port(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags,
|
|
|
- u32 in_pport, u32 in_pport_mask,
|
|
|
- enum rocker_of_dpa_table_id goto_tbl)
|
|
|
-{
|
|
|
- struct rocker_flow_tbl_entry *entry;
|
|
|
-
|
|
|
- entry = rocker_kzalloc(trans, flags, sizeof(*entry));
|
|
|
- if (!entry)
|
|
|
- return -ENOMEM;
|
|
|
-
|
|
|
- entry->key.priority = ROCKER_PRIORITY_IG_PORT;
|
|
|
- entry->key.tbl_id = ROCKER_OF_DPA_TABLE_ID_INGRESS_PORT;
|
|
|
- entry->key.ig_port.in_pport = in_pport;
|
|
|
- entry->key.ig_port.in_pport_mask = in_pport_mask;
|
|
|
- entry->key.ig_port.goto_tbl = goto_tbl;
|
|
|
-
|
|
|
- return rocker_flow_tbl_do(rocker_port, trans, flags, entry);
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_flow_tbl_vlan(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags,
|
|
|
- u32 in_pport, __be16 vlan_id,
|
|
|
- __be16 vlan_id_mask,
|
|
|
- enum rocker_of_dpa_table_id goto_tbl,
|
|
|
- bool untagged, __be16 new_vlan_id)
|
|
|
-{
|
|
|
- struct rocker_flow_tbl_entry *entry;
|
|
|
-
|
|
|
- entry = rocker_kzalloc(trans, flags, sizeof(*entry));
|
|
|
- if (!entry)
|
|
|
- return -ENOMEM;
|
|
|
-
|
|
|
- entry->key.priority = ROCKER_PRIORITY_VLAN;
|
|
|
- entry->key.tbl_id = ROCKER_OF_DPA_TABLE_ID_VLAN;
|
|
|
- entry->key.vlan.in_pport = in_pport;
|
|
|
- entry->key.vlan.vlan_id = vlan_id;
|
|
|
- entry->key.vlan.vlan_id_mask = vlan_id_mask;
|
|
|
- entry->key.vlan.goto_tbl = goto_tbl;
|
|
|
-
|
|
|
- entry->key.vlan.untagged = untagged;
|
|
|
- entry->key.vlan.new_vlan_id = new_vlan_id;
|
|
|
-
|
|
|
- return rocker_flow_tbl_do(rocker_port, trans, flags, entry);
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_flow_tbl_term_mac(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans,
|
|
|
- u32 in_pport, u32 in_pport_mask,
|
|
|
- __be16 eth_type, const u8 *eth_dst,
|
|
|
- const u8 *eth_dst_mask, __be16 vlan_id,
|
|
|
- __be16 vlan_id_mask, bool copy_to_cpu,
|
|
|
- int flags)
|
|
|
-{
|
|
|
- struct rocker_flow_tbl_entry *entry;
|
|
|
-
|
|
|
- entry = rocker_kzalloc(trans, flags, sizeof(*entry));
|
|
|
- if (!entry)
|
|
|
- return -ENOMEM;
|
|
|
-
|
|
|
- if (is_multicast_ether_addr(eth_dst)) {
|
|
|
- entry->key.priority = ROCKER_PRIORITY_TERM_MAC_MCAST;
|
|
|
- entry->key.term_mac.goto_tbl =
|
|
|
- ROCKER_OF_DPA_TABLE_ID_MULTICAST_ROUTING;
|
|
|
- } else {
|
|
|
- entry->key.priority = ROCKER_PRIORITY_TERM_MAC_UCAST;
|
|
|
- entry->key.term_mac.goto_tbl =
|
|
|
- ROCKER_OF_DPA_TABLE_ID_UNICAST_ROUTING;
|
|
|
- }
|
|
|
-
|
|
|
- entry->key.tbl_id = ROCKER_OF_DPA_TABLE_ID_TERMINATION_MAC;
|
|
|
- entry->key.term_mac.in_pport = in_pport;
|
|
|
- entry->key.term_mac.in_pport_mask = in_pport_mask;
|
|
|
- entry->key.term_mac.eth_type = eth_type;
|
|
|
- ether_addr_copy(entry->key.term_mac.eth_dst, eth_dst);
|
|
|
- ether_addr_copy(entry->key.term_mac.eth_dst_mask, eth_dst_mask);
|
|
|
- entry->key.term_mac.vlan_id = vlan_id;
|
|
|
- entry->key.term_mac.vlan_id_mask = vlan_id_mask;
|
|
|
- entry->key.term_mac.copy_to_cpu = copy_to_cpu;
|
|
|
-
|
|
|
- return rocker_flow_tbl_do(rocker_port, trans, flags, entry);
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_flow_tbl_bridge(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags,
|
|
|
- const u8 *eth_dst, const u8 *eth_dst_mask,
|
|
|
- __be16 vlan_id, u32 tunnel_id,
|
|
|
- enum rocker_of_dpa_table_id goto_tbl,
|
|
|
- u32 group_id, bool copy_to_cpu)
|
|
|
-{
|
|
|
- struct rocker_flow_tbl_entry *entry;
|
|
|
- u32 priority;
|
|
|
- bool vlan_bridging = !!vlan_id;
|
|
|
- bool dflt = !eth_dst || (eth_dst && eth_dst_mask);
|
|
|
- bool wild = false;
|
|
|
-
|
|
|
- entry = rocker_kzalloc(trans, flags, sizeof(*entry));
|
|
|
- if (!entry)
|
|
|
- return -ENOMEM;
|
|
|
-
|
|
|
- entry->key.tbl_id = ROCKER_OF_DPA_TABLE_ID_BRIDGING;
|
|
|
-
|
|
|
- if (eth_dst) {
|
|
|
- entry->key.bridge.has_eth_dst = 1;
|
|
|
- ether_addr_copy(entry->key.bridge.eth_dst, eth_dst);
|
|
|
- }
|
|
|
- if (eth_dst_mask) {
|
|
|
- entry->key.bridge.has_eth_dst_mask = 1;
|
|
|
- ether_addr_copy(entry->key.bridge.eth_dst_mask, eth_dst_mask);
|
|
|
- if (!ether_addr_equal(eth_dst_mask, ff_mac))
|
|
|
- wild = true;
|
|
|
- }
|
|
|
-
|
|
|
- priority = ROCKER_PRIORITY_UNKNOWN;
|
|
|
- if (vlan_bridging && dflt && wild)
|
|
|
- priority = ROCKER_PRIORITY_BRIDGING_VLAN_DFLT_WILD;
|
|
|
- else if (vlan_bridging && dflt && !wild)
|
|
|
- priority = ROCKER_PRIORITY_BRIDGING_VLAN_DFLT_EXACT;
|
|
|
- else if (vlan_bridging && !dflt)
|
|
|
- priority = ROCKER_PRIORITY_BRIDGING_VLAN;
|
|
|
- else if (!vlan_bridging && dflt && wild)
|
|
|
- priority = ROCKER_PRIORITY_BRIDGING_TENANT_DFLT_WILD;
|
|
|
- else if (!vlan_bridging && dflt && !wild)
|
|
|
- priority = ROCKER_PRIORITY_BRIDGING_TENANT_DFLT_EXACT;
|
|
|
- else if (!vlan_bridging && !dflt)
|
|
|
- priority = ROCKER_PRIORITY_BRIDGING_TENANT;
|
|
|
-
|
|
|
- entry->key.priority = priority;
|
|
|
- entry->key.bridge.vlan_id = vlan_id;
|
|
|
- entry->key.bridge.tunnel_id = tunnel_id;
|
|
|
- entry->key.bridge.goto_tbl = goto_tbl;
|
|
|
- entry->key.bridge.group_id = group_id;
|
|
|
- entry->key.bridge.copy_to_cpu = copy_to_cpu;
|
|
|
-
|
|
|
- return rocker_flow_tbl_do(rocker_port, trans, flags, entry);
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_flow_tbl_ucast4_routing(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans,
|
|
|
- __be16 eth_type, __be32 dst,
|
|
|
- __be32 dst_mask, u32 priority,
|
|
|
- enum rocker_of_dpa_table_id goto_tbl,
|
|
|
- u32 group_id, int flags)
|
|
|
-{
|
|
|
- struct rocker_flow_tbl_entry *entry;
|
|
|
-
|
|
|
- entry = rocker_kzalloc(trans, flags, sizeof(*entry));
|
|
|
- if (!entry)
|
|
|
- return -ENOMEM;
|
|
|
-
|
|
|
- entry->key.tbl_id = ROCKER_OF_DPA_TABLE_ID_UNICAST_ROUTING;
|
|
|
- entry->key.priority = priority;
|
|
|
- entry->key.ucast_routing.eth_type = eth_type;
|
|
|
- entry->key.ucast_routing.dst4 = dst;
|
|
|
- entry->key.ucast_routing.dst4_mask = dst_mask;
|
|
|
- entry->key.ucast_routing.goto_tbl = goto_tbl;
|
|
|
- entry->key.ucast_routing.group_id = group_id;
|
|
|
- entry->key_len = offsetof(struct rocker_flow_tbl_key,
|
|
|
- ucast_routing.group_id);
|
|
|
-
|
|
|
- return rocker_flow_tbl_do(rocker_port, trans, flags, entry);
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_flow_tbl_acl(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags,
|
|
|
- u32 in_pport, u32 in_pport_mask,
|
|
|
- const u8 *eth_src, const u8 *eth_src_mask,
|
|
|
- const u8 *eth_dst, const u8 *eth_dst_mask,
|
|
|
- __be16 eth_type, __be16 vlan_id,
|
|
|
- __be16 vlan_id_mask, u8 ip_proto,
|
|
|
- u8 ip_proto_mask, u8 ip_tos, u8 ip_tos_mask,
|
|
|
- u32 group_id)
|
|
|
-{
|
|
|
- u32 priority;
|
|
|
- struct rocker_flow_tbl_entry *entry;
|
|
|
-
|
|
|
- entry = rocker_kzalloc(trans, flags, sizeof(*entry));
|
|
|
- if (!entry)
|
|
|
- return -ENOMEM;
|
|
|
-
|
|
|
- priority = ROCKER_PRIORITY_ACL_NORMAL;
|
|
|
- if (eth_dst && eth_dst_mask) {
|
|
|
- if (ether_addr_equal(eth_dst_mask, mcast_mac))
|
|
|
- priority = ROCKER_PRIORITY_ACL_DFLT;
|
|
|
- else if (is_link_local_ether_addr(eth_dst))
|
|
|
- priority = ROCKER_PRIORITY_ACL_CTRL;
|
|
|
- }
|
|
|
-
|
|
|
- entry->key.priority = priority;
|
|
|
- entry->key.tbl_id = ROCKER_OF_DPA_TABLE_ID_ACL_POLICY;
|
|
|
- entry->key.acl.in_pport = in_pport;
|
|
|
- entry->key.acl.in_pport_mask = in_pport_mask;
|
|
|
-
|
|
|
- if (eth_src)
|
|
|
- ether_addr_copy(entry->key.acl.eth_src, eth_src);
|
|
|
- if (eth_src_mask)
|
|
|
- ether_addr_copy(entry->key.acl.eth_src_mask, eth_src_mask);
|
|
|
- if (eth_dst)
|
|
|
- ether_addr_copy(entry->key.acl.eth_dst, eth_dst);
|
|
|
- if (eth_dst_mask)
|
|
|
- ether_addr_copy(entry->key.acl.eth_dst_mask, eth_dst_mask);
|
|
|
-
|
|
|
- entry->key.acl.eth_type = eth_type;
|
|
|
- entry->key.acl.vlan_id = vlan_id;
|
|
|
- entry->key.acl.vlan_id_mask = vlan_id_mask;
|
|
|
- entry->key.acl.ip_proto = ip_proto;
|
|
|
- entry->key.acl.ip_proto_mask = ip_proto_mask;
|
|
|
- entry->key.acl.ip_tos = ip_tos;
|
|
|
- entry->key.acl.ip_tos_mask = ip_tos_mask;
|
|
|
- entry->key.acl.group_id = group_id;
|
|
|
-
|
|
|
- return rocker_flow_tbl_do(rocker_port, trans, flags, entry);
|
|
|
-}
|
|
|
-
|
|
|
-static struct rocker_group_tbl_entry *
|
|
|
-rocker_group_tbl_find(const struct rocker *rocker,
|
|
|
- const struct rocker_group_tbl_entry *match)
|
|
|
-{
|
|
|
- struct rocker_group_tbl_entry *found;
|
|
|
-
|
|
|
- hash_for_each_possible(rocker->group_tbl, found,
|
|
|
- entry, match->group_id) {
|
|
|
- if (found->group_id == match->group_id)
|
|
|
- return found;
|
|
|
- }
|
|
|
-
|
|
|
- return NULL;
|
|
|
-}
|
|
|
-
|
|
|
-static void rocker_group_tbl_entry_free(struct switchdev_trans *trans,
|
|
|
- struct rocker_group_tbl_entry *entry)
|
|
|
-{
|
|
|
- switch (ROCKER_GROUP_TYPE_GET(entry->group_id)) {
|
|
|
- case ROCKER_OF_DPA_GROUP_TYPE_L2_FLOOD:
|
|
|
- case ROCKER_OF_DPA_GROUP_TYPE_L2_MCAST:
|
|
|
- rocker_kfree(trans, entry->group_ids);
|
|
|
- break;
|
|
|
- default:
|
|
|
- break;
|
|
|
- }
|
|
|
- rocker_kfree(trans, entry);
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_group_tbl_add(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags,
|
|
|
- struct rocker_group_tbl_entry *match)
|
|
|
-{
|
|
|
- struct rocker *rocker = rocker_port->rocker;
|
|
|
- struct rocker_group_tbl_entry *found;
|
|
|
- unsigned long lock_flags;
|
|
|
-
|
|
|
- spin_lock_irqsave(&rocker->group_tbl_lock, lock_flags);
|
|
|
-
|
|
|
- found = rocker_group_tbl_find(rocker, match);
|
|
|
-
|
|
|
- if (found) {
|
|
|
- if (!switchdev_trans_ph_prepare(trans))
|
|
|
- hash_del(&found->entry);
|
|
|
- rocker_group_tbl_entry_free(trans, found);
|
|
|
- found = match;
|
|
|
- found->cmd = ROCKER_TLV_CMD_TYPE_OF_DPA_GROUP_MOD;
|
|
|
- } else {
|
|
|
- found = match;
|
|
|
- found->cmd = ROCKER_TLV_CMD_TYPE_OF_DPA_GROUP_ADD;
|
|
|
- }
|
|
|
-
|
|
|
- if (!switchdev_trans_ph_prepare(trans))
|
|
|
- hash_add(rocker->group_tbl, &found->entry, found->group_id);
|
|
|
-
|
|
|
- spin_unlock_irqrestore(&rocker->group_tbl_lock, lock_flags);
|
|
|
-
|
|
|
- if (!switchdev_trans_ph_prepare(trans))
|
|
|
- return rocker_cmd_exec(rocker_port,
|
|
|
- rocker_flags_nowait(flags),
|
|
|
- rocker_cmd_group_tbl_add,
|
|
|
- found, NULL, NULL);
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_group_tbl_del(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags,
|
|
|
- struct rocker_group_tbl_entry *match)
|
|
|
-{
|
|
|
- struct rocker *rocker = rocker_port->rocker;
|
|
|
- struct rocker_group_tbl_entry *found;
|
|
|
- unsigned long lock_flags;
|
|
|
- int err = 0;
|
|
|
-
|
|
|
- spin_lock_irqsave(&rocker->group_tbl_lock, lock_flags);
|
|
|
-
|
|
|
- found = rocker_group_tbl_find(rocker, match);
|
|
|
-
|
|
|
- if (found) {
|
|
|
- if (!switchdev_trans_ph_prepare(trans))
|
|
|
- hash_del(&found->entry);
|
|
|
- found->cmd = ROCKER_TLV_CMD_TYPE_OF_DPA_GROUP_DEL;
|
|
|
- }
|
|
|
-
|
|
|
- spin_unlock_irqrestore(&rocker->group_tbl_lock, lock_flags);
|
|
|
-
|
|
|
- rocker_group_tbl_entry_free(trans, match);
|
|
|
-
|
|
|
- if (found) {
|
|
|
- if (!switchdev_trans_ph_prepare(trans))
|
|
|
- err = rocker_cmd_exec(rocker_port,
|
|
|
- rocker_flags_nowait(flags),
|
|
|
- rocker_cmd_group_tbl_del,
|
|
|
- found, NULL, NULL);
|
|
|
- rocker_group_tbl_entry_free(trans, found);
|
|
|
- }
|
|
|
-
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_group_tbl_do(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags,
|
|
|
- struct rocker_group_tbl_entry *entry)
|
|
|
-{
|
|
|
- if (flags & ROCKER_OP_FLAG_REMOVE)
|
|
|
- return rocker_group_tbl_del(rocker_port, trans, flags, entry);
|
|
|
- else
|
|
|
- return rocker_group_tbl_add(rocker_port, trans, flags, entry);
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_group_l2_interface(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags,
|
|
|
- __be16 vlan_id, u32 out_pport,
|
|
|
- int pop_vlan)
|
|
|
-{
|
|
|
- struct rocker_group_tbl_entry *entry;
|
|
|
-
|
|
|
- entry = rocker_kzalloc(trans, flags, sizeof(*entry));
|
|
|
- if (!entry)
|
|
|
- return -ENOMEM;
|
|
|
-
|
|
|
- entry->group_id = ROCKER_GROUP_L2_INTERFACE(vlan_id, out_pport);
|
|
|
- entry->l2_interface.pop_vlan = pop_vlan;
|
|
|
-
|
|
|
- return rocker_group_tbl_do(rocker_port, trans, flags, entry);
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_group_l2_fan_out(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans,
|
|
|
- int flags, u8 group_count,
|
|
|
- const u32 *group_ids, u32 group_id)
|
|
|
-{
|
|
|
- struct rocker_group_tbl_entry *entry;
|
|
|
-
|
|
|
- entry = rocker_kzalloc(trans, flags, sizeof(*entry));
|
|
|
- if (!entry)
|
|
|
- return -ENOMEM;
|
|
|
-
|
|
|
- entry->group_id = group_id;
|
|
|
- entry->group_count = group_count;
|
|
|
-
|
|
|
- entry->group_ids = rocker_kcalloc(trans, flags,
|
|
|
- group_count, sizeof(u32));
|
|
|
- if (!entry->group_ids) {
|
|
|
- rocker_kfree(trans, entry);
|
|
|
- return -ENOMEM;
|
|
|
- }
|
|
|
- memcpy(entry->group_ids, group_ids, group_count * sizeof(u32));
|
|
|
-
|
|
|
- return rocker_group_tbl_do(rocker_port, trans, flags, entry);
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_group_l2_flood(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags,
|
|
|
- __be16 vlan_id, u8 group_count,
|
|
|
- const u32 *group_ids, u32 group_id)
|
|
|
-{
|
|
|
- return rocker_group_l2_fan_out(rocker_port, trans, flags,
|
|
|
- group_count, group_ids,
|
|
|
- group_id);
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_group_l3_unicast(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags,
|
|
|
- u32 index, const u8 *src_mac, const u8 *dst_mac,
|
|
|
- __be16 vlan_id, bool ttl_check, u32 pport)
|
|
|
-{
|
|
|
- struct rocker_group_tbl_entry *entry;
|
|
|
-
|
|
|
- entry = rocker_kzalloc(trans, flags, sizeof(*entry));
|
|
|
- if (!entry)
|
|
|
- return -ENOMEM;
|
|
|
-
|
|
|
- entry->group_id = ROCKER_GROUP_L3_UNICAST(index);
|
|
|
- if (src_mac)
|
|
|
- ether_addr_copy(entry->l3_unicast.eth_src, src_mac);
|
|
|
- if (dst_mac)
|
|
|
- ether_addr_copy(entry->l3_unicast.eth_dst, dst_mac);
|
|
|
- entry->l3_unicast.vlan_id = vlan_id;
|
|
|
- entry->l3_unicast.ttl_check = ttl_check;
|
|
|
- entry->l3_unicast.group_id = ROCKER_GROUP_L2_INTERFACE(vlan_id, pport);
|
|
|
-
|
|
|
- return rocker_group_tbl_do(rocker_port, trans, flags, entry);
|
|
|
-}
|
|
|
-
|
|
|
-static struct rocker_neigh_tbl_entry *
|
|
|
-rocker_neigh_tbl_find(const struct rocker *rocker, __be32 ip_addr)
|
|
|
-{
|
|
|
- struct rocker_neigh_tbl_entry *found;
|
|
|
-
|
|
|
- hash_for_each_possible(rocker->neigh_tbl, found,
|
|
|
- entry, be32_to_cpu(ip_addr))
|
|
|
- if (found->ip_addr == ip_addr)
|
|
|
- return found;
|
|
|
-
|
|
|
- return NULL;
|
|
|
-}
|
|
|
-
|
|
|
-static void _rocker_neigh_add(struct rocker *rocker,
|
|
|
- struct switchdev_trans *trans,
|
|
|
- struct rocker_neigh_tbl_entry *entry)
|
|
|
-{
|
|
|
- if (!switchdev_trans_ph_commit(trans))
|
|
|
- entry->index = rocker->neigh_tbl_next_index++;
|
|
|
- if (switchdev_trans_ph_prepare(trans))
|
|
|
- return;
|
|
|
- entry->ref_count++;
|
|
|
- hash_add(rocker->neigh_tbl, &entry->entry,
|
|
|
- be32_to_cpu(entry->ip_addr));
|
|
|
-}
|
|
|
-
|
|
|
-static void _rocker_neigh_del(struct switchdev_trans *trans,
|
|
|
- struct rocker_neigh_tbl_entry *entry)
|
|
|
-{
|
|
|
- if (switchdev_trans_ph_prepare(trans))
|
|
|
- return;
|
|
|
- if (--entry->ref_count == 0) {
|
|
|
- hash_del(&entry->entry);
|
|
|
- rocker_kfree(trans, entry);
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-static void _rocker_neigh_update(struct rocker_neigh_tbl_entry *entry,
|
|
|
- struct switchdev_trans *trans,
|
|
|
- const u8 *eth_dst, bool ttl_check)
|
|
|
-{
|
|
|
- if (eth_dst) {
|
|
|
- ether_addr_copy(entry->eth_dst, eth_dst);
|
|
|
- entry->ttl_check = ttl_check;
|
|
|
- } else if (!switchdev_trans_ph_prepare(trans)) {
|
|
|
- entry->ref_count++;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_ipv4_neigh(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans,
|
|
|
- int flags, __be32 ip_addr, const u8 *eth_dst)
|
|
|
-{
|
|
|
- struct rocker *rocker = rocker_port->rocker;
|
|
|
- struct rocker_neigh_tbl_entry *entry;
|
|
|
- struct rocker_neigh_tbl_entry *found;
|
|
|
- unsigned long lock_flags;
|
|
|
- __be16 eth_type = htons(ETH_P_IP);
|
|
|
- enum rocker_of_dpa_table_id goto_tbl =
|
|
|
- ROCKER_OF_DPA_TABLE_ID_ACL_POLICY;
|
|
|
- u32 group_id;
|
|
|
- u32 priority = 0;
|
|
|
- bool adding = !(flags & ROCKER_OP_FLAG_REMOVE);
|
|
|
- bool updating;
|
|
|
- bool removing;
|
|
|
- int err = 0;
|
|
|
-
|
|
|
- entry = rocker_kzalloc(trans, flags, sizeof(*entry));
|
|
|
- if (!entry)
|
|
|
- return -ENOMEM;
|
|
|
-
|
|
|
- spin_lock_irqsave(&rocker->neigh_tbl_lock, lock_flags);
|
|
|
-
|
|
|
- found = rocker_neigh_tbl_find(rocker, ip_addr);
|
|
|
-
|
|
|
- updating = found && adding;
|
|
|
- removing = found && !adding;
|
|
|
- adding = !found && adding;
|
|
|
-
|
|
|
- if (adding) {
|
|
|
- entry->ip_addr = ip_addr;
|
|
|
- entry->dev = rocker_port->dev;
|
|
|
- ether_addr_copy(entry->eth_dst, eth_dst);
|
|
|
- entry->ttl_check = true;
|
|
|
- _rocker_neigh_add(rocker, trans, entry);
|
|
|
- } else if (removing) {
|
|
|
- memcpy(entry, found, sizeof(*entry));
|
|
|
- _rocker_neigh_del(trans, found);
|
|
|
- } else if (updating) {
|
|
|
- _rocker_neigh_update(found, trans, eth_dst, true);
|
|
|
- memcpy(entry, found, sizeof(*entry));
|
|
|
- } else {
|
|
|
- err = -ENOENT;
|
|
|
- }
|
|
|
-
|
|
|
- spin_unlock_irqrestore(&rocker->neigh_tbl_lock, lock_flags);
|
|
|
-
|
|
|
- if (err)
|
|
|
- goto err_out;
|
|
|
-
|
|
|
- /* For each active neighbor, we have an L3 unicast group and
|
|
|
- * a /32 route to the neighbor, which uses the L3 unicast
|
|
|
- * group. The L3 unicast group can also be referred to by
|
|
|
- * other routes' nexthops.
|
|
|
- */
|
|
|
-
|
|
|
- err = rocker_group_l3_unicast(rocker_port, trans, flags,
|
|
|
- entry->index,
|
|
|
- rocker_port->dev->dev_addr,
|
|
|
- entry->eth_dst,
|
|
|
- rocker_port->internal_vlan_id,
|
|
|
- entry->ttl_check,
|
|
|
- rocker_port->pport);
|
|
|
- if (err) {
|
|
|
- netdev_err(rocker_port->dev,
|
|
|
- "Error (%d) L3 unicast group index %d\n",
|
|
|
- err, entry->index);
|
|
|
- goto err_out;
|
|
|
- }
|
|
|
-
|
|
|
- if (adding || removing) {
|
|
|
- group_id = ROCKER_GROUP_L3_UNICAST(entry->index);
|
|
|
- err = rocker_flow_tbl_ucast4_routing(rocker_port, trans,
|
|
|
- eth_type, ip_addr,
|
|
|
- inet_make_mask(32),
|
|
|
- priority, goto_tbl,
|
|
|
- group_id, flags);
|
|
|
-
|
|
|
- if (err)
|
|
|
- netdev_err(rocker_port->dev,
|
|
|
- "Error (%d) /32 unicast route %pI4 group 0x%08x\n",
|
|
|
- err, &entry->ip_addr, group_id);
|
|
|
- }
|
|
|
-
|
|
|
-err_out:
|
|
|
- if (!adding)
|
|
|
- rocker_kfree(trans, entry);
|
|
|
-
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_ipv4_resolve(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans,
|
|
|
- __be32 ip_addr)
|
|
|
-{
|
|
|
- struct net_device *dev = rocker_port->dev;
|
|
|
- struct neighbour *n = __ipv4_neigh_lookup(dev, (__force u32)ip_addr);
|
|
|
- int err = 0;
|
|
|
-
|
|
|
- if (!n) {
|
|
|
- n = neigh_create(&arp_tbl, &ip_addr, dev);
|
|
|
- if (IS_ERR(n))
|
|
|
- return IS_ERR(n);
|
|
|
- }
|
|
|
-
|
|
|
- /* If the neigh is already resolved, then go ahead and
|
|
|
- * install the entry, otherwise start the ARP process to
|
|
|
- * resolve the neigh.
|
|
|
- */
|
|
|
-
|
|
|
- if (n->nud_state & NUD_VALID)
|
|
|
- err = rocker_port_ipv4_neigh(rocker_port, trans, 0,
|
|
|
- ip_addr, n->ha);
|
|
|
- else
|
|
|
- neigh_event_send(n, NULL);
|
|
|
-
|
|
|
- neigh_release(n);
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_ipv4_nh(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags,
|
|
|
- __be32 ip_addr, u32 *index)
|
|
|
-{
|
|
|
- struct rocker *rocker = rocker_port->rocker;
|
|
|
- struct rocker_neigh_tbl_entry *entry;
|
|
|
- struct rocker_neigh_tbl_entry *found;
|
|
|
- unsigned long lock_flags;
|
|
|
- bool adding = !(flags & ROCKER_OP_FLAG_REMOVE);
|
|
|
- bool updating;
|
|
|
- bool removing;
|
|
|
- bool resolved = true;
|
|
|
- int err = 0;
|
|
|
-
|
|
|
- entry = rocker_kzalloc(trans, flags, sizeof(*entry));
|
|
|
- if (!entry)
|
|
|
- return -ENOMEM;
|
|
|
-
|
|
|
- spin_lock_irqsave(&rocker->neigh_tbl_lock, lock_flags);
|
|
|
-
|
|
|
- found = rocker_neigh_tbl_find(rocker, ip_addr);
|
|
|
- if (found)
|
|
|
- *index = found->index;
|
|
|
-
|
|
|
- updating = found && adding;
|
|
|
- removing = found && !adding;
|
|
|
- adding = !found && adding;
|
|
|
-
|
|
|
- if (adding) {
|
|
|
- entry->ip_addr = ip_addr;
|
|
|
- entry->dev = rocker_port->dev;
|
|
|
- _rocker_neigh_add(rocker, trans, entry);
|
|
|
- *index = entry->index;
|
|
|
- resolved = false;
|
|
|
- } else if (removing) {
|
|
|
- _rocker_neigh_del(trans, found);
|
|
|
- } else if (updating) {
|
|
|
- _rocker_neigh_update(found, trans, NULL, false);
|
|
|
- resolved = !is_zero_ether_addr(found->eth_dst);
|
|
|
- } else {
|
|
|
- err = -ENOENT;
|
|
|
- }
|
|
|
-
|
|
|
- spin_unlock_irqrestore(&rocker->neigh_tbl_lock, lock_flags);
|
|
|
-
|
|
|
- if (!adding)
|
|
|
- rocker_kfree(trans, entry);
|
|
|
-
|
|
|
- if (err)
|
|
|
- return err;
|
|
|
-
|
|
|
- /* Resolved means neigh ip_addr is resolved to neigh mac. */
|
|
|
-
|
|
|
- if (!resolved)
|
|
|
- err = rocker_port_ipv4_resolve(rocker_port, trans, ip_addr);
|
|
|
-
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_vlan_flood_group(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans,
|
|
|
- int flags, __be16 vlan_id)
|
|
|
-{
|
|
|
- struct rocker_port *p;
|
|
|
- const struct rocker *rocker = rocker_port->rocker;
|
|
|
- u32 group_id = ROCKER_GROUP_L2_FLOOD(vlan_id, 0);
|
|
|
- u32 *group_ids;
|
|
|
- u8 group_count = 0;
|
|
|
- int err = 0;
|
|
|
- int i;
|
|
|
-
|
|
|
- group_ids = rocker_kcalloc(trans, flags,
|
|
|
- rocker->port_count, sizeof(u32));
|
|
|
- if (!group_ids)
|
|
|
- return -ENOMEM;
|
|
|
-
|
|
|
- /* Adjust the flood group for this VLAN. The flood group
|
|
|
- * references an L2 interface group for each port in this
|
|
|
- * VLAN.
|
|
|
- */
|
|
|
-
|
|
|
- for (i = 0; i < rocker->port_count; i++) {
|
|
|
- p = rocker->ports[i];
|
|
|
- if (!p)
|
|
|
- continue;
|
|
|
- if (!rocker_port_is_bridged(p))
|
|
|
- continue;
|
|
|
- if (test_bit(ntohs(vlan_id), p->vlan_bitmap)) {
|
|
|
- group_ids[group_count++] =
|
|
|
- ROCKER_GROUP_L2_INTERFACE(vlan_id, p->pport);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- /* If there are no bridged ports in this VLAN, we're done */
|
|
|
- if (group_count == 0)
|
|
|
- goto no_ports_in_vlan;
|
|
|
-
|
|
|
- err = rocker_group_l2_flood(rocker_port, trans, flags, vlan_id,
|
|
|
- group_count, group_ids, group_id);
|
|
|
- if (err)
|
|
|
- netdev_err(rocker_port->dev,
|
|
|
- "Error (%d) port VLAN l2 flood group\n", err);
|
|
|
-
|
|
|
-no_ports_in_vlan:
|
|
|
- rocker_kfree(trans, group_ids);
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_vlan_l2_groups(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags,
|
|
|
- __be16 vlan_id, bool pop_vlan)
|
|
|
-{
|
|
|
- const struct rocker *rocker = rocker_port->rocker;
|
|
|
- struct rocker_port *p;
|
|
|
- bool adding = !(flags & ROCKER_OP_FLAG_REMOVE);
|
|
|
- u32 out_pport;
|
|
|
- int ref = 0;
|
|
|
- int err;
|
|
|
- int i;
|
|
|
-
|
|
|
- /* An L2 interface group for this port in this VLAN, but
|
|
|
- * only when port STP state is LEARNING|FORWARDING.
|
|
|
- */
|
|
|
-
|
|
|
- if (rocker_port->stp_state == BR_STATE_LEARNING ||
|
|
|
- rocker_port->stp_state == BR_STATE_FORWARDING) {
|
|
|
- out_pport = rocker_port->pport;
|
|
|
- err = rocker_group_l2_interface(rocker_port, trans, flags,
|
|
|
- vlan_id, out_pport, pop_vlan);
|
|
|
- if (err) {
|
|
|
- netdev_err(rocker_port->dev,
|
|
|
- "Error (%d) port VLAN l2 group for pport %d\n",
|
|
|
- err, out_pport);
|
|
|
- return err;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- /* An L2 interface group for this VLAN to CPU port.
|
|
|
- * Add when first port joins this VLAN and destroy when
|
|
|
- * last port leaves this VLAN.
|
|
|
- */
|
|
|
-
|
|
|
- for (i = 0; i < rocker->port_count; i++) {
|
|
|
- p = rocker->ports[i];
|
|
|
- if (p && test_bit(ntohs(vlan_id), p->vlan_bitmap))
|
|
|
- ref++;
|
|
|
- }
|
|
|
-
|
|
|
- if ((!adding || ref != 1) && (adding || ref != 0))
|
|
|
- return 0;
|
|
|
-
|
|
|
- out_pport = 0;
|
|
|
- err = rocker_group_l2_interface(rocker_port, trans, flags,
|
|
|
- vlan_id, out_pport, pop_vlan);
|
|
|
- if (err) {
|
|
|
- netdev_err(rocker_port->dev,
|
|
|
- "Error (%d) port VLAN l2 group for CPU port\n", err);
|
|
|
- return err;
|
|
|
- }
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static struct rocker_ctrl {
|
|
|
- const u8 *eth_dst;
|
|
|
- const u8 *eth_dst_mask;
|
|
|
- __be16 eth_type;
|
|
|
- bool acl;
|
|
|
- bool bridge;
|
|
|
- bool term;
|
|
|
- bool copy_to_cpu;
|
|
|
-} rocker_ctrls[] = {
|
|
|
- [ROCKER_CTRL_LINK_LOCAL_MCAST] = {
|
|
|
- /* pass link local multicast pkts up to CPU for filtering */
|
|
|
- .eth_dst = ll_mac,
|
|
|
- .eth_dst_mask = ll_mask,
|
|
|
- .acl = true,
|
|
|
- },
|
|
|
- [ROCKER_CTRL_LOCAL_ARP] = {
|
|
|
- /* pass local ARP pkts up to CPU */
|
|
|
- .eth_dst = zero_mac,
|
|
|
- .eth_dst_mask = zero_mac,
|
|
|
- .eth_type = htons(ETH_P_ARP),
|
|
|
- .acl = true,
|
|
|
- },
|
|
|
- [ROCKER_CTRL_IPV4_MCAST] = {
|
|
|
- /* pass IPv4 mcast pkts up to CPU, RFC 1112 */
|
|
|
- .eth_dst = ipv4_mcast,
|
|
|
- .eth_dst_mask = ipv4_mask,
|
|
|
- .eth_type = htons(ETH_P_IP),
|
|
|
- .term = true,
|
|
|
- .copy_to_cpu = true,
|
|
|
- },
|
|
|
- [ROCKER_CTRL_IPV6_MCAST] = {
|
|
|
- /* pass IPv6 mcast pkts up to CPU, RFC 2464 */
|
|
|
- .eth_dst = ipv6_mcast,
|
|
|
- .eth_dst_mask = ipv6_mask,
|
|
|
- .eth_type = htons(ETH_P_IPV6),
|
|
|
- .term = true,
|
|
|
- .copy_to_cpu = true,
|
|
|
- },
|
|
|
- [ROCKER_CTRL_DFLT_BRIDGING] = {
|
|
|
- /* flood any pkts on vlan */
|
|
|
- .bridge = true,
|
|
|
- .copy_to_cpu = true,
|
|
|
- },
|
|
|
- [ROCKER_CTRL_DFLT_OVS] = {
|
|
|
- /* pass all pkts up to CPU */
|
|
|
- .eth_dst = zero_mac,
|
|
|
- .eth_dst_mask = zero_mac,
|
|
|
- .acl = true,
|
|
|
- },
|
|
|
-};
|
|
|
-
|
|
|
-static int rocker_port_ctrl_vlan_acl(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags,
|
|
|
- const struct rocker_ctrl *ctrl, __be16 vlan_id)
|
|
|
-{
|
|
|
- u32 in_pport = rocker_port->pport;
|
|
|
- u32 in_pport_mask = 0xffffffff;
|
|
|
- u32 out_pport = 0;
|
|
|
- const u8 *eth_src = NULL;
|
|
|
- const u8 *eth_src_mask = NULL;
|
|
|
- __be16 vlan_id_mask = htons(0xffff);
|
|
|
- u8 ip_proto = 0;
|
|
|
- u8 ip_proto_mask = 0;
|
|
|
- u8 ip_tos = 0;
|
|
|
- u8 ip_tos_mask = 0;
|
|
|
- u32 group_id = ROCKER_GROUP_L2_INTERFACE(vlan_id, out_pport);
|
|
|
- int err;
|
|
|
-
|
|
|
- err = rocker_flow_tbl_acl(rocker_port, trans, flags,
|
|
|
- in_pport, in_pport_mask,
|
|
|
- eth_src, eth_src_mask,
|
|
|
- ctrl->eth_dst, ctrl->eth_dst_mask,
|
|
|
- ctrl->eth_type,
|
|
|
- vlan_id, vlan_id_mask,
|
|
|
- ip_proto, ip_proto_mask,
|
|
|
- ip_tos, ip_tos_mask,
|
|
|
- group_id);
|
|
|
-
|
|
|
- if (err)
|
|
|
- netdev_err(rocker_port->dev, "Error (%d) ctrl ACL\n", err);
|
|
|
-
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_ctrl_vlan_bridge(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans,
|
|
|
- int flags,
|
|
|
- const struct rocker_ctrl *ctrl,
|
|
|
- __be16 vlan_id)
|
|
|
-{
|
|
|
- enum rocker_of_dpa_table_id goto_tbl =
|
|
|
- ROCKER_OF_DPA_TABLE_ID_ACL_POLICY;
|
|
|
- u32 group_id = ROCKER_GROUP_L2_FLOOD(vlan_id, 0);
|
|
|
- u32 tunnel_id = 0;
|
|
|
- int err;
|
|
|
-
|
|
|
- if (!rocker_port_is_bridged(rocker_port))
|
|
|
- return 0;
|
|
|
-
|
|
|
- err = rocker_flow_tbl_bridge(rocker_port, trans, flags,
|
|
|
- ctrl->eth_dst, ctrl->eth_dst_mask,
|
|
|
- vlan_id, tunnel_id,
|
|
|
- goto_tbl, group_id, ctrl->copy_to_cpu);
|
|
|
-
|
|
|
- if (err)
|
|
|
- netdev_err(rocker_port->dev, "Error (%d) ctrl FLOOD\n", err);
|
|
|
-
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_ctrl_vlan_term(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags,
|
|
|
- const struct rocker_ctrl *ctrl, __be16 vlan_id)
|
|
|
-{
|
|
|
- u32 in_pport_mask = 0xffffffff;
|
|
|
- __be16 vlan_id_mask = htons(0xffff);
|
|
|
- int err;
|
|
|
-
|
|
|
- if (ntohs(vlan_id) == 0)
|
|
|
- vlan_id = rocker_port->internal_vlan_id;
|
|
|
-
|
|
|
- err = rocker_flow_tbl_term_mac(rocker_port, trans,
|
|
|
- rocker_port->pport, in_pport_mask,
|
|
|
- ctrl->eth_type, ctrl->eth_dst,
|
|
|
- ctrl->eth_dst_mask, vlan_id,
|
|
|
- vlan_id_mask, ctrl->copy_to_cpu,
|
|
|
- flags);
|
|
|
-
|
|
|
- if (err)
|
|
|
- netdev_err(rocker_port->dev, "Error (%d) ctrl term\n", err);
|
|
|
-
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_ctrl_vlan(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags,
|
|
|
- const struct rocker_ctrl *ctrl, __be16 vlan_id)
|
|
|
-{
|
|
|
- if (ctrl->acl)
|
|
|
- return rocker_port_ctrl_vlan_acl(rocker_port, trans, flags,
|
|
|
- ctrl, vlan_id);
|
|
|
- if (ctrl->bridge)
|
|
|
- return rocker_port_ctrl_vlan_bridge(rocker_port, trans, flags,
|
|
|
- ctrl, vlan_id);
|
|
|
-
|
|
|
- if (ctrl->term)
|
|
|
- return rocker_port_ctrl_vlan_term(rocker_port, trans, flags,
|
|
|
- ctrl, vlan_id);
|
|
|
-
|
|
|
- return -EOPNOTSUPP;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_ctrl_vlan_add(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags,
|
|
|
- __be16 vlan_id)
|
|
|
-{
|
|
|
- int err = 0;
|
|
|
- int i;
|
|
|
-
|
|
|
- for (i = 0; i < ROCKER_CTRL_MAX; i++) {
|
|
|
- if (rocker_port->ctrls[i]) {
|
|
|
- err = rocker_port_ctrl_vlan(rocker_port, trans, flags,
|
|
|
- &rocker_ctrls[i], vlan_id);
|
|
|
- if (err)
|
|
|
- return err;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_ctrl(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags,
|
|
|
- const struct rocker_ctrl *ctrl)
|
|
|
-{
|
|
|
- u16 vid;
|
|
|
- int err = 0;
|
|
|
-
|
|
|
- for (vid = 1; vid < VLAN_N_VID; vid++) {
|
|
|
- if (!test_bit(vid, rocker_port->vlan_bitmap))
|
|
|
- continue;
|
|
|
- err = rocker_port_ctrl_vlan(rocker_port, trans, flags,
|
|
|
- ctrl, htons(vid));
|
|
|
- if (err)
|
|
|
- break;
|
|
|
- }
|
|
|
-
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_vlan(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags, u16 vid)
|
|
|
-{
|
|
|
- enum rocker_of_dpa_table_id goto_tbl =
|
|
|
- ROCKER_OF_DPA_TABLE_ID_TERMINATION_MAC;
|
|
|
- u32 in_pport = rocker_port->pport;
|
|
|
- __be16 vlan_id = htons(vid);
|
|
|
- __be16 vlan_id_mask = htons(0xffff);
|
|
|
- __be16 internal_vlan_id;
|
|
|
- bool untagged;
|
|
|
- bool adding = !(flags & ROCKER_OP_FLAG_REMOVE);
|
|
|
- int err;
|
|
|
-
|
|
|
- internal_vlan_id = rocker_port_vid_to_vlan(rocker_port, vid, &untagged);
|
|
|
-
|
|
|
- if (adding && test_bit(ntohs(internal_vlan_id),
|
|
|
- rocker_port->vlan_bitmap))
|
|
|
- return 0; /* already added */
|
|
|
- else if (!adding && !test_bit(ntohs(internal_vlan_id),
|
|
|
- rocker_port->vlan_bitmap))
|
|
|
- return 0; /* already removed */
|
|
|
-
|
|
|
- change_bit(ntohs(internal_vlan_id), rocker_port->vlan_bitmap);
|
|
|
-
|
|
|
- if (adding) {
|
|
|
- err = rocker_port_ctrl_vlan_add(rocker_port, trans, flags,
|
|
|
- internal_vlan_id);
|
|
|
- if (err) {
|
|
|
- netdev_err(rocker_port->dev,
|
|
|
- "Error (%d) port ctrl vlan add\n", err);
|
|
|
- goto err_out;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- err = rocker_port_vlan_l2_groups(rocker_port, trans, flags,
|
|
|
- internal_vlan_id, untagged);
|
|
|
- if (err) {
|
|
|
- netdev_err(rocker_port->dev,
|
|
|
- "Error (%d) port VLAN l2 groups\n", err);
|
|
|
- goto err_out;
|
|
|
- }
|
|
|
-
|
|
|
- err = rocker_port_vlan_flood_group(rocker_port, trans, flags,
|
|
|
- internal_vlan_id);
|
|
|
- if (err) {
|
|
|
- netdev_err(rocker_port->dev,
|
|
|
- "Error (%d) port VLAN l2 flood group\n", err);
|
|
|
- goto err_out;
|
|
|
- }
|
|
|
-
|
|
|
- err = rocker_flow_tbl_vlan(rocker_port, trans, flags,
|
|
|
- in_pport, vlan_id, vlan_id_mask,
|
|
|
- goto_tbl, untagged, internal_vlan_id);
|
|
|
- if (err)
|
|
|
- netdev_err(rocker_port->dev,
|
|
|
- "Error (%d) port VLAN table\n", err);
|
|
|
-
|
|
|
-err_out:
|
|
|
- if (switchdev_trans_ph_prepare(trans))
|
|
|
- change_bit(ntohs(internal_vlan_id), rocker_port->vlan_bitmap);
|
|
|
-
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_ig_tbl(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags)
|
|
|
-{
|
|
|
- enum rocker_of_dpa_table_id goto_tbl;
|
|
|
- u32 in_pport;
|
|
|
- u32 in_pport_mask;
|
|
|
- int err;
|
|
|
-
|
|
|
- /* Normal Ethernet Frames. Matches pkts from any local physical
|
|
|
- * ports. Goto VLAN tbl.
|
|
|
- */
|
|
|
-
|
|
|
- in_pport = 0;
|
|
|
- in_pport_mask = 0xffff0000;
|
|
|
- goto_tbl = ROCKER_OF_DPA_TABLE_ID_VLAN;
|
|
|
-
|
|
|
- err = rocker_flow_tbl_ig_port(rocker_port, trans, flags,
|
|
|
- in_pport, in_pport_mask,
|
|
|
- goto_tbl);
|
|
|
- if (err)
|
|
|
- netdev_err(rocker_port->dev,
|
|
|
- "Error (%d) ingress port table entry\n", err);
|
|
|
-
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-struct rocker_fdb_learn_work {
|
|
|
- struct work_struct work;
|
|
|
- struct rocker_port *rocker_port;
|
|
|
- struct switchdev_trans *trans;
|
|
|
- int flags;
|
|
|
- u8 addr[ETH_ALEN];
|
|
|
- u16 vid;
|
|
|
-};
|
|
|
-
|
|
|
-static void rocker_port_fdb_learn_work(struct work_struct *work)
|
|
|
-{
|
|
|
- const struct rocker_fdb_learn_work *lw =
|
|
|
- container_of(work, struct rocker_fdb_learn_work, work);
|
|
|
- bool removing = (lw->flags & ROCKER_OP_FLAG_REMOVE);
|
|
|
- bool learned = (lw->flags & ROCKER_OP_FLAG_LEARNED);
|
|
|
- struct switchdev_notifier_fdb_info info;
|
|
|
-
|
|
|
- info.addr = lw->addr;
|
|
|
- info.vid = lw->vid;
|
|
|
-
|
|
|
- rtnl_lock();
|
|
|
- if (learned && removing)
|
|
|
- call_switchdev_notifiers(SWITCHDEV_FDB_DEL,
|
|
|
- lw->rocker_port->dev, &info.info);
|
|
|
- else if (learned && !removing)
|
|
|
- call_switchdev_notifiers(SWITCHDEV_FDB_ADD,
|
|
|
- lw->rocker_port->dev, &info.info);
|
|
|
- rtnl_unlock();
|
|
|
-
|
|
|
- rocker_kfree(lw->trans, work);
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_fdb_learn(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags,
|
|
|
- const u8 *addr, __be16 vlan_id)
|
|
|
-{
|
|
|
- struct rocker_fdb_learn_work *lw;
|
|
|
- enum rocker_of_dpa_table_id goto_tbl =
|
|
|
- ROCKER_OF_DPA_TABLE_ID_ACL_POLICY;
|
|
|
- u32 out_pport = rocker_port->pport;
|
|
|
- u32 tunnel_id = 0;
|
|
|
- u32 group_id = ROCKER_GROUP_NONE;
|
|
|
- bool syncing = !!(rocker_port->brport_flags & BR_LEARNING_SYNC);
|
|
|
- bool copy_to_cpu = false;
|
|
|
- int err;
|
|
|
-
|
|
|
- if (rocker_port_is_bridged(rocker_port))
|
|
|
- group_id = ROCKER_GROUP_L2_INTERFACE(vlan_id, out_pport);
|
|
|
-
|
|
|
- if (!(flags & ROCKER_OP_FLAG_REFRESH)) {
|
|
|
- err = rocker_flow_tbl_bridge(rocker_port, trans, flags, addr,
|
|
|
- NULL, vlan_id, tunnel_id, goto_tbl,
|
|
|
- group_id, copy_to_cpu);
|
|
|
- if (err)
|
|
|
- return err;
|
|
|
- }
|
|
|
-
|
|
|
- if (!syncing)
|
|
|
- return 0;
|
|
|
-
|
|
|
- if (!rocker_port_is_bridged(rocker_port))
|
|
|
- return 0;
|
|
|
-
|
|
|
- lw = rocker_kzalloc(trans, flags, sizeof(*lw));
|
|
|
- if (!lw)
|
|
|
- return -ENOMEM;
|
|
|
-
|
|
|
- INIT_WORK(&lw->work, rocker_port_fdb_learn_work);
|
|
|
-
|
|
|
- lw->rocker_port = rocker_port;
|
|
|
- lw->trans = trans;
|
|
|
- lw->flags = flags;
|
|
|
- ether_addr_copy(lw->addr, addr);
|
|
|
- lw->vid = rocker_port_vlan_to_vid(rocker_port, vlan_id);
|
|
|
-
|
|
|
- if (switchdev_trans_ph_prepare(trans))
|
|
|
- rocker_kfree(trans, lw);
|
|
|
- else
|
|
|
- schedule_work(&lw->work);
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static struct rocker_fdb_tbl_entry *
|
|
|
-rocker_fdb_tbl_find(const struct rocker *rocker,
|
|
|
- const struct rocker_fdb_tbl_entry *match)
|
|
|
-{
|
|
|
- struct rocker_fdb_tbl_entry *found;
|
|
|
-
|
|
|
- hash_for_each_possible(rocker->fdb_tbl, found, entry, match->key_crc32)
|
|
|
- if (memcmp(&found->key, &match->key, sizeof(found->key)) == 0)
|
|
|
- return found;
|
|
|
-
|
|
|
- return NULL;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_fdb(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans,
|
|
|
- const unsigned char *addr,
|
|
|
- __be16 vlan_id, int flags)
|
|
|
-{
|
|
|
- struct rocker *rocker = rocker_port->rocker;
|
|
|
- struct rocker_fdb_tbl_entry *fdb;
|
|
|
- struct rocker_fdb_tbl_entry *found;
|
|
|
- bool removing = (flags & ROCKER_OP_FLAG_REMOVE);
|
|
|
- unsigned long lock_flags;
|
|
|
-
|
|
|
- fdb = rocker_kzalloc(trans, flags, sizeof(*fdb));
|
|
|
- if (!fdb)
|
|
|
- return -ENOMEM;
|
|
|
-
|
|
|
- fdb->learned = (flags & ROCKER_OP_FLAG_LEARNED);
|
|
|
- fdb->touched = jiffies;
|
|
|
- fdb->key.rocker_port = rocker_port;
|
|
|
- ether_addr_copy(fdb->key.addr, addr);
|
|
|
- fdb->key.vlan_id = vlan_id;
|
|
|
- fdb->key_crc32 = crc32(~0, &fdb->key, sizeof(fdb->key));
|
|
|
-
|
|
|
- spin_lock_irqsave(&rocker->fdb_tbl_lock, lock_flags);
|
|
|
-
|
|
|
- found = rocker_fdb_tbl_find(rocker, fdb);
|
|
|
-
|
|
|
- if (found) {
|
|
|
- found->touched = jiffies;
|
|
|
- if (removing) {
|
|
|
- rocker_kfree(trans, fdb);
|
|
|
- if (!switchdev_trans_ph_prepare(trans))
|
|
|
- hash_del(&found->entry);
|
|
|
- }
|
|
|
- } else if (!removing) {
|
|
|
- if (!switchdev_trans_ph_prepare(trans))
|
|
|
- hash_add(rocker->fdb_tbl, &fdb->entry,
|
|
|
- fdb->key_crc32);
|
|
|
- }
|
|
|
-
|
|
|
- spin_unlock_irqrestore(&rocker->fdb_tbl_lock, lock_flags);
|
|
|
-
|
|
|
- /* Check if adding and already exists, or removing and can't find */
|
|
|
- if (!found != !removing) {
|
|
|
- rocker_kfree(trans, fdb);
|
|
|
- if (!found && removing)
|
|
|
- return 0;
|
|
|
- /* Refreshing existing to update aging timers */
|
|
|
- flags |= ROCKER_OP_FLAG_REFRESH;
|
|
|
- }
|
|
|
-
|
|
|
- return rocker_port_fdb_learn(rocker_port, trans, flags, addr, vlan_id);
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_fdb_flush(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags)
|
|
|
-{
|
|
|
- struct rocker *rocker = rocker_port->rocker;
|
|
|
- struct rocker_fdb_tbl_entry *found;
|
|
|
- unsigned long lock_flags;
|
|
|
- struct hlist_node *tmp;
|
|
|
- int bkt;
|
|
|
- int err = 0;
|
|
|
-
|
|
|
- if (rocker_port->stp_state == BR_STATE_LEARNING ||
|
|
|
- rocker_port->stp_state == BR_STATE_FORWARDING)
|
|
|
- return 0;
|
|
|
-
|
|
|
- flags |= ROCKER_OP_FLAG_NOWAIT | ROCKER_OP_FLAG_REMOVE;
|
|
|
-
|
|
|
- spin_lock_irqsave(&rocker->fdb_tbl_lock, lock_flags);
|
|
|
-
|
|
|
- hash_for_each_safe(rocker->fdb_tbl, bkt, tmp, found, entry) {
|
|
|
- if (found->key.rocker_port != rocker_port)
|
|
|
- continue;
|
|
|
- if (!found->learned)
|
|
|
- continue;
|
|
|
- err = rocker_port_fdb_learn(rocker_port, trans, flags,
|
|
|
- found->key.addr,
|
|
|
- found->key.vlan_id);
|
|
|
- if (err)
|
|
|
- goto err_out;
|
|
|
- if (!switchdev_trans_ph_prepare(trans))
|
|
|
- hash_del(&found->entry);
|
|
|
- }
|
|
|
-
|
|
|
-err_out:
|
|
|
- spin_unlock_irqrestore(&rocker->fdb_tbl_lock, lock_flags);
|
|
|
-
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-static void rocker_fdb_cleanup(unsigned long data)
|
|
|
-{
|
|
|
- struct rocker *rocker = (struct rocker *)data;
|
|
|
- struct rocker_port *rocker_port;
|
|
|
- struct rocker_fdb_tbl_entry *entry;
|
|
|
- struct hlist_node *tmp;
|
|
|
- unsigned long next_timer = jiffies + BR_MIN_AGEING_TIME;
|
|
|
- unsigned long expires;
|
|
|
- unsigned long lock_flags;
|
|
|
- int flags = ROCKER_OP_FLAG_NOWAIT | ROCKER_OP_FLAG_REMOVE |
|
|
|
- ROCKER_OP_FLAG_LEARNED;
|
|
|
- int bkt;
|
|
|
-
|
|
|
- spin_lock_irqsave(&rocker->fdb_tbl_lock, lock_flags);
|
|
|
-
|
|
|
- hash_for_each_safe(rocker->fdb_tbl, bkt, tmp, entry, entry) {
|
|
|
- if (!entry->learned)
|
|
|
- continue;
|
|
|
- rocker_port = entry->key.rocker_port;
|
|
|
- expires = entry->touched + rocker_port->ageing_time;
|
|
|
- if (time_before_eq(expires, jiffies)) {
|
|
|
- rocker_port_fdb_learn(rocker_port, NULL,
|
|
|
- flags, entry->key.addr,
|
|
|
- entry->key.vlan_id);
|
|
|
- hash_del(&entry->entry);
|
|
|
- } else if (time_before(expires, next_timer)) {
|
|
|
- next_timer = expires;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- spin_unlock_irqrestore(&rocker->fdb_tbl_lock, lock_flags);
|
|
|
-
|
|
|
- mod_timer(&rocker->fdb_cleanup_timer, round_jiffies_up(next_timer));
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_router_mac(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags,
|
|
|
- __be16 vlan_id)
|
|
|
-{
|
|
|
- u32 in_pport_mask = 0xffffffff;
|
|
|
- __be16 eth_type;
|
|
|
- const u8 *dst_mac_mask = ff_mac;
|
|
|
- __be16 vlan_id_mask = htons(0xffff);
|
|
|
- bool copy_to_cpu = false;
|
|
|
- int err;
|
|
|
-
|
|
|
- if (ntohs(vlan_id) == 0)
|
|
|
- vlan_id = rocker_port->internal_vlan_id;
|
|
|
-
|
|
|
- eth_type = htons(ETH_P_IP);
|
|
|
- err = rocker_flow_tbl_term_mac(rocker_port, trans,
|
|
|
- rocker_port->pport, in_pport_mask,
|
|
|
- eth_type, rocker_port->dev->dev_addr,
|
|
|
- dst_mac_mask, vlan_id, vlan_id_mask,
|
|
|
- copy_to_cpu, flags);
|
|
|
- if (err)
|
|
|
- return err;
|
|
|
-
|
|
|
- eth_type = htons(ETH_P_IPV6);
|
|
|
- err = rocker_flow_tbl_term_mac(rocker_port, trans,
|
|
|
- rocker_port->pport, in_pport_mask,
|
|
|
- eth_type, rocker_port->dev->dev_addr,
|
|
|
- dst_mac_mask, vlan_id, vlan_id_mask,
|
|
|
- copy_to_cpu, flags);
|
|
|
-
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_fwding(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags)
|
|
|
-{
|
|
|
- bool pop_vlan;
|
|
|
- u32 out_pport;
|
|
|
- __be16 vlan_id;
|
|
|
- u16 vid;
|
|
|
- int err;
|
|
|
-
|
|
|
- /* Port will be forwarding-enabled if its STP state is LEARNING
|
|
|
- * or FORWARDING. Traffic from CPU can still egress, regardless of
|
|
|
- * port STP state. Use L2 interface group on port VLANs as a way
|
|
|
- * to toggle port forwarding: if forwarding is disabled, L2
|
|
|
- * interface group will not exist.
|
|
|
- */
|
|
|
-
|
|
|
- if (rocker_port->stp_state != BR_STATE_LEARNING &&
|
|
|
- rocker_port->stp_state != BR_STATE_FORWARDING)
|
|
|
- flags |= ROCKER_OP_FLAG_REMOVE;
|
|
|
-
|
|
|
- out_pport = rocker_port->pport;
|
|
|
- for (vid = 1; vid < VLAN_N_VID; vid++) {
|
|
|
- if (!test_bit(vid, rocker_port->vlan_bitmap))
|
|
|
- continue;
|
|
|
- vlan_id = htons(vid);
|
|
|
- pop_vlan = rocker_vlan_id_is_internal(vlan_id);
|
|
|
- err = rocker_group_l2_interface(rocker_port, trans, flags,
|
|
|
- vlan_id, out_pport, pop_vlan);
|
|
|
- if (err) {
|
|
|
- netdev_err(rocker_port->dev,
|
|
|
- "Error (%d) port VLAN l2 group for pport %d\n",
|
|
|
- err, out_pport);
|
|
|
- return err;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_stp_update(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags,
|
|
|
- u8 state)
|
|
|
-{
|
|
|
- bool want[ROCKER_CTRL_MAX] = { 0, };
|
|
|
- bool prev_ctrls[ROCKER_CTRL_MAX];
|
|
|
- u8 uninitialized_var(prev_state);
|
|
|
- int err;
|
|
|
- int i;
|
|
|
-
|
|
|
- if (switchdev_trans_ph_prepare(trans)) {
|
|
|
- memcpy(prev_ctrls, rocker_port->ctrls, sizeof(prev_ctrls));
|
|
|
- prev_state = rocker_port->stp_state;
|
|
|
- }
|
|
|
-
|
|
|
- if (rocker_port->stp_state == state)
|
|
|
- return 0;
|
|
|
-
|
|
|
- rocker_port->stp_state = state;
|
|
|
-
|
|
|
- switch (state) {
|
|
|
- case BR_STATE_DISABLED:
|
|
|
- /* port is completely disabled */
|
|
|
- break;
|
|
|
- case BR_STATE_LISTENING:
|
|
|
- case BR_STATE_BLOCKING:
|
|
|
- want[ROCKER_CTRL_LINK_LOCAL_MCAST] = true;
|
|
|
- break;
|
|
|
- case BR_STATE_LEARNING:
|
|
|
- case BR_STATE_FORWARDING:
|
|
|
- if (!rocker_port_is_ovsed(rocker_port))
|
|
|
- want[ROCKER_CTRL_LINK_LOCAL_MCAST] = true;
|
|
|
- want[ROCKER_CTRL_IPV4_MCAST] = true;
|
|
|
- want[ROCKER_CTRL_IPV6_MCAST] = true;
|
|
|
- if (rocker_port_is_bridged(rocker_port))
|
|
|
- want[ROCKER_CTRL_DFLT_BRIDGING] = true;
|
|
|
- else if (rocker_port_is_ovsed(rocker_port))
|
|
|
- want[ROCKER_CTRL_DFLT_OVS] = true;
|
|
|
- else
|
|
|
- want[ROCKER_CTRL_LOCAL_ARP] = true;
|
|
|
- break;
|
|
|
- }
|
|
|
-
|
|
|
- for (i = 0; i < ROCKER_CTRL_MAX; i++) {
|
|
|
- if (want[i] != rocker_port->ctrls[i]) {
|
|
|
- int ctrl_flags = flags |
|
|
|
- (want[i] ? 0 : ROCKER_OP_FLAG_REMOVE);
|
|
|
- err = rocker_port_ctrl(rocker_port, trans, ctrl_flags,
|
|
|
- &rocker_ctrls[i]);
|
|
|
- if (err)
|
|
|
- goto err_out;
|
|
|
- rocker_port->ctrls[i] = want[i];
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- err = rocker_port_fdb_flush(rocker_port, trans, flags);
|
|
|
- if (err)
|
|
|
- goto err_out;
|
|
|
-
|
|
|
- err = rocker_port_fwding(rocker_port, trans, flags);
|
|
|
-
|
|
|
-err_out:
|
|
|
- if (switchdev_trans_ph_prepare(trans)) {
|
|
|
- memcpy(rocker_port->ctrls, prev_ctrls, sizeof(prev_ctrls));
|
|
|
- rocker_port->stp_state = prev_state;
|
|
|
- }
|
|
|
-
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_fwd_enable(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags)
|
|
|
-{
|
|
|
- if (rocker_port_is_bridged(rocker_port))
|
|
|
- /* bridge STP will enable port */
|
|
|
- return 0;
|
|
|
-
|
|
|
- /* port is not bridged, so simulate going to FORWARDING state */
|
|
|
- return rocker_port_stp_update(rocker_port, trans, flags,
|
|
|
- BR_STATE_FORWARDING);
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_fwd_disable(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, int flags)
|
|
|
-{
|
|
|
- if (rocker_port_is_bridged(rocker_port))
|
|
|
- /* bridge STP will disable port */
|
|
|
- return 0;
|
|
|
-
|
|
|
- /* port is not bridged, so simulate going to DISABLED state */
|
|
|
- return rocker_port_stp_update(rocker_port, trans, flags,
|
|
|
- BR_STATE_DISABLED);
|
|
|
-}
|
|
|
-
|
|
|
-static struct rocker_internal_vlan_tbl_entry *
|
|
|
-rocker_internal_vlan_tbl_find(const struct rocker *rocker, int ifindex)
|
|
|
-{
|
|
|
- struct rocker_internal_vlan_tbl_entry *found;
|
|
|
-
|
|
|
- hash_for_each_possible(rocker->internal_vlan_tbl, found,
|
|
|
- entry, ifindex) {
|
|
|
- if (found->ifindex == ifindex)
|
|
|
- return found;
|
|
|
- }
|
|
|
-
|
|
|
- return NULL;
|
|
|
-}
|
|
|
-
|
|
|
-static __be16 rocker_port_internal_vlan_id_get(struct rocker_port *rocker_port,
|
|
|
- int ifindex)
|
|
|
-{
|
|
|
- struct rocker *rocker = rocker_port->rocker;
|
|
|
- struct rocker_internal_vlan_tbl_entry *entry;
|
|
|
- struct rocker_internal_vlan_tbl_entry *found;
|
|
|
- unsigned long lock_flags;
|
|
|
- int i;
|
|
|
-
|
|
|
- entry = kzalloc(sizeof(*entry), GFP_KERNEL);
|
|
|
- if (!entry)
|
|
|
- return 0;
|
|
|
-
|
|
|
- entry->ifindex = ifindex;
|
|
|
-
|
|
|
- spin_lock_irqsave(&rocker->internal_vlan_tbl_lock, lock_flags);
|
|
|
-
|
|
|
- found = rocker_internal_vlan_tbl_find(rocker, ifindex);
|
|
|
- if (found) {
|
|
|
- kfree(entry);
|
|
|
- goto found;
|
|
|
- }
|
|
|
-
|
|
|
- found = entry;
|
|
|
- hash_add(rocker->internal_vlan_tbl, &found->entry, found->ifindex);
|
|
|
-
|
|
|
- for (i = 0; i < ROCKER_N_INTERNAL_VLANS; i++) {
|
|
|
- if (test_and_set_bit(i, rocker->internal_vlan_bitmap))
|
|
|
- continue;
|
|
|
- found->vlan_id = htons(ROCKER_INTERNAL_VLAN_ID_BASE + i);
|
|
|
- goto found;
|
|
|
- }
|
|
|
-
|
|
|
- netdev_err(rocker_port->dev, "Out of internal VLAN IDs\n");
|
|
|
-
|
|
|
-found:
|
|
|
- found->ref_count++;
|
|
|
- spin_unlock_irqrestore(&rocker->internal_vlan_tbl_lock, lock_flags);
|
|
|
-
|
|
|
- return found->vlan_id;
|
|
|
-}
|
|
|
-
|
|
|
-static void
|
|
|
-rocker_port_internal_vlan_id_put(const struct rocker_port *rocker_port,
|
|
|
- int ifindex)
|
|
|
-{
|
|
|
- struct rocker *rocker = rocker_port->rocker;
|
|
|
- struct rocker_internal_vlan_tbl_entry *found;
|
|
|
- unsigned long lock_flags;
|
|
|
- unsigned long bit;
|
|
|
-
|
|
|
- spin_lock_irqsave(&rocker->internal_vlan_tbl_lock, lock_flags);
|
|
|
-
|
|
|
- found = rocker_internal_vlan_tbl_find(rocker, ifindex);
|
|
|
- if (!found) {
|
|
|
- netdev_err(rocker_port->dev,
|
|
|
- "ifindex (%d) not found in internal VLAN tbl\n",
|
|
|
- ifindex);
|
|
|
- goto not_found;
|
|
|
- }
|
|
|
-
|
|
|
- if (--found->ref_count <= 0) {
|
|
|
- bit = ntohs(found->vlan_id) - ROCKER_INTERNAL_VLAN_ID_BASE;
|
|
|
- clear_bit(bit, rocker->internal_vlan_bitmap);
|
|
|
- hash_del(&found->entry);
|
|
|
- kfree(found);
|
|
|
- }
|
|
|
-
|
|
|
-not_found:
|
|
|
- spin_unlock_irqrestore(&rocker->internal_vlan_tbl_lock, lock_flags);
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_fib_ipv4(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans, __be32 dst,
|
|
|
- int dst_len, const struct fib_info *fi,
|
|
|
- u32 tb_id, int flags)
|
|
|
-{
|
|
|
- const struct fib_nh *nh;
|
|
|
- __be16 eth_type = htons(ETH_P_IP);
|
|
|
- __be32 dst_mask = inet_make_mask(dst_len);
|
|
|
- __be16 internal_vlan_id = rocker_port->internal_vlan_id;
|
|
|
- u32 priority = fi->fib_priority;
|
|
|
- enum rocker_of_dpa_table_id goto_tbl =
|
|
|
- ROCKER_OF_DPA_TABLE_ID_ACL_POLICY;
|
|
|
- u32 group_id;
|
|
|
- bool nh_on_port;
|
|
|
- bool has_gw;
|
|
|
- u32 index;
|
|
|
- int err;
|
|
|
-
|
|
|
- /* XXX support ECMP */
|
|
|
-
|
|
|
- nh = fi->fib_nh;
|
|
|
- nh_on_port = (fi->fib_dev == rocker_port->dev);
|
|
|
- has_gw = !!nh->nh_gw;
|
|
|
-
|
|
|
- if (has_gw && nh_on_port) {
|
|
|
- err = rocker_port_ipv4_nh(rocker_port, trans, flags,
|
|
|
- nh->nh_gw, &index);
|
|
|
- if (err)
|
|
|
- return err;
|
|
|
-
|
|
|
- group_id = ROCKER_GROUP_L3_UNICAST(index);
|
|
|
- } else {
|
|
|
- /* Send to CPU for processing */
|
|
|
- group_id = ROCKER_GROUP_L2_INTERFACE(internal_vlan_id, 0);
|
|
|
- }
|
|
|
-
|
|
|
- err = rocker_flow_tbl_ucast4_routing(rocker_port, trans, eth_type, dst,
|
|
|
- dst_mask, priority, goto_tbl,
|
|
|
- group_id, flags);
|
|
|
- if (err)
|
|
|
- netdev_err(rocker_port->dev, "Error (%d) IPv4 route %pI4\n",
|
|
|
- err, &dst);
|
|
|
-
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-/*****************
|
|
|
- * Net device ops
|
|
|
- *****************/
|
|
|
-
|
|
|
-static int rocker_port_open(struct net_device *dev)
|
|
|
-{
|
|
|
- struct rocker_port *rocker_port = netdev_priv(dev);
|
|
|
- int err;
|
|
|
-
|
|
|
- err = rocker_port_dma_rings_init(rocker_port);
|
|
|
- if (err)
|
|
|
- return err;
|
|
|
-
|
|
|
- err = request_irq(rocker_msix_tx_vector(rocker_port),
|
|
|
- rocker_tx_irq_handler, 0,
|
|
|
- rocker_driver_name, rocker_port);
|
|
|
- if (err) {
|
|
|
- netdev_err(rocker_port->dev, "cannot assign tx irq\n");
|
|
|
- goto err_request_tx_irq;
|
|
|
- }
|
|
|
-
|
|
|
- err = request_irq(rocker_msix_rx_vector(rocker_port),
|
|
|
- rocker_rx_irq_handler, 0,
|
|
|
- rocker_driver_name, rocker_port);
|
|
|
- if (err) {
|
|
|
- netdev_err(rocker_port->dev, "cannot assign rx irq\n");
|
|
|
- goto err_request_rx_irq;
|
|
|
- }
|
|
|
-
|
|
|
- err = rocker_world_port_open(rocker_port);
|
|
|
- if (err) {
|
|
|
- netdev_err(rocker_port->dev, "cannot open port in world\n");
|
|
|
- goto err_world_port_open;
|
|
|
- }
|
|
|
-
|
|
|
- err = rocker_port_fwd_enable(rocker_port, NULL, 0);
|
|
|
- if (err)
|
|
|
- goto err_fwd_enable;
|
|
|
-
|
|
|
- napi_enable(&rocker_port->napi_tx);
|
|
|
- napi_enable(&rocker_port->napi_rx);
|
|
|
- if (!dev->proto_down)
|
|
|
- rocker_port_set_enable(rocker_port, true);
|
|
|
- netif_start_queue(dev);
|
|
|
- return 0;
|
|
|
-
|
|
|
-err_fwd_enable:
|
|
|
-err_world_port_open:
|
|
|
- free_irq(rocker_msix_rx_vector(rocker_port), rocker_port);
|
|
|
-err_request_rx_irq:
|
|
|
- free_irq(rocker_msix_tx_vector(rocker_port), rocker_port);
|
|
|
-err_request_tx_irq:
|
|
|
- rocker_port_dma_rings_fini(rocker_port);
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_stop(struct net_device *dev)
|
|
|
-{
|
|
|
- struct rocker_port *rocker_port = netdev_priv(dev);
|
|
|
-
|
|
|
- netif_stop_queue(dev);
|
|
|
- rocker_port_set_enable(rocker_port, false);
|
|
|
- napi_disable(&rocker_port->napi_rx);
|
|
|
- napi_disable(&rocker_port->napi_tx);
|
|
|
- rocker_world_port_stop(rocker_port);
|
|
|
- rocker_port_fwd_disable(rocker_port, NULL,
|
|
|
- ROCKER_OP_FLAG_NOWAIT);
|
|
|
- free_irq(rocker_msix_rx_vector(rocker_port), rocker_port);
|
|
|
- free_irq(rocker_msix_tx_vector(rocker_port), rocker_port);
|
|
|
- rocker_port_dma_rings_fini(rocker_port);
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static void rocker_tx_desc_frags_unmap(const struct rocker_port *rocker_port,
|
|
|
- const struct rocker_desc_info *desc_info)
|
|
|
-{
|
|
|
- const struct rocker *rocker = rocker_port->rocker;
|
|
|
- struct pci_dev *pdev = rocker->pdev;
|
|
|
- const struct rocker_tlv *attrs[ROCKER_TLV_TX_MAX + 1];
|
|
|
- struct rocker_tlv *attr;
|
|
|
- int rem;
|
|
|
-
|
|
|
- rocker_tlv_parse_desc(attrs, ROCKER_TLV_TX_MAX, desc_info);
|
|
|
- if (!attrs[ROCKER_TLV_TX_FRAGS])
|
|
|
- return;
|
|
|
- rocker_tlv_for_each_nested(attr, attrs[ROCKER_TLV_TX_FRAGS], rem) {
|
|
|
- const struct rocker_tlv *frag_attrs[ROCKER_TLV_TX_FRAG_ATTR_MAX + 1];
|
|
|
- dma_addr_t dma_handle;
|
|
|
- size_t len;
|
|
|
-
|
|
|
- if (rocker_tlv_type(attr) != ROCKER_TLV_TX_FRAG)
|
|
|
- continue;
|
|
|
- rocker_tlv_parse_nested(frag_attrs, ROCKER_TLV_TX_FRAG_ATTR_MAX,
|
|
|
- attr);
|
|
|
- if (!frag_attrs[ROCKER_TLV_TX_FRAG_ATTR_ADDR] ||
|
|
|
- !frag_attrs[ROCKER_TLV_TX_FRAG_ATTR_LEN])
|
|
|
- continue;
|
|
|
- dma_handle = rocker_tlv_get_u64(frag_attrs[ROCKER_TLV_TX_FRAG_ATTR_ADDR]);
|
|
|
- len = rocker_tlv_get_u16(frag_attrs[ROCKER_TLV_TX_FRAG_ATTR_LEN]);
|
|
|
- pci_unmap_single(pdev, dma_handle, len, DMA_TO_DEVICE);
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_tx_desc_frag_map_put(const struct rocker_port *rocker_port,
|
|
|
- struct rocker_desc_info *desc_info,
|
|
|
- char *buf, size_t buf_len)
|
|
|
-{
|
|
|
- const struct rocker *rocker = rocker_port->rocker;
|
|
|
- struct pci_dev *pdev = rocker->pdev;
|
|
|
- dma_addr_t dma_handle;
|
|
|
- struct rocker_tlv *frag;
|
|
|
-
|
|
|
- dma_handle = pci_map_single(pdev, buf, buf_len, DMA_TO_DEVICE);
|
|
|
- if (unlikely(pci_dma_mapping_error(pdev, dma_handle))) {
|
|
|
- if (net_ratelimit())
|
|
|
- netdev_err(rocker_port->dev, "failed to dma map tx frag\n");
|
|
|
- return -EIO;
|
|
|
- }
|
|
|
- frag = rocker_tlv_nest_start(desc_info, ROCKER_TLV_TX_FRAG);
|
|
|
- if (!frag)
|
|
|
- goto unmap_frag;
|
|
|
- if (rocker_tlv_put_u64(desc_info, ROCKER_TLV_TX_FRAG_ATTR_ADDR,
|
|
|
- dma_handle))
|
|
|
- goto nest_cancel;
|
|
|
- if (rocker_tlv_put_u16(desc_info, ROCKER_TLV_TX_FRAG_ATTR_LEN,
|
|
|
- buf_len))
|
|
|
- goto nest_cancel;
|
|
|
- rocker_tlv_nest_end(desc_info, frag);
|
|
|
- return 0;
|
|
|
-
|
|
|
-nest_cancel:
|
|
|
- rocker_tlv_nest_cancel(desc_info, frag);
|
|
|
-unmap_frag:
|
|
|
- pci_unmap_single(pdev, dma_handle, buf_len, DMA_TO_DEVICE);
|
|
|
- return -EMSGSIZE;
|
|
|
-}
|
|
|
-
|
|
|
-static netdev_tx_t rocker_port_xmit(struct sk_buff *skb, struct net_device *dev)
|
|
|
-{
|
|
|
- struct rocker_port *rocker_port = netdev_priv(dev);
|
|
|
- struct rocker *rocker = rocker_port->rocker;
|
|
|
- struct rocker_desc_info *desc_info;
|
|
|
- struct rocker_tlv *frags;
|
|
|
- int i;
|
|
|
- int err;
|
|
|
+ struct rocker_port *rocker_port = netdev_priv(dev);
|
|
|
+ struct rocker *rocker = rocker_port->rocker;
|
|
|
+ struct rocker_desc_info *desc_info;
|
|
|
+ struct rocker_tlv *frags;
|
|
|
+ int i;
|
|
|
+ int err;
|
|
|
|
|
|
desc_info = rocker_desc_head_get(&rocker_port->tx_ring);
|
|
|
if (unlikely(!desc_info)) {
|
|
@@ -4439,12 +1999,8 @@ static int rocker_port_change_proto_down(struct net_device *dev,
|
|
|
static void rocker_port_neigh_destroy(struct neighbour *n)
|
|
|
{
|
|
|
struct rocker_port *rocker_port = netdev_priv(n->dev);
|
|
|
- int flags = ROCKER_OP_FLAG_REMOVE | ROCKER_OP_FLAG_NOWAIT;
|
|
|
- __be32 ip_addr = *(__be32 *)n->primary_key;
|
|
|
int err;
|
|
|
|
|
|
- rocker_port_ipv4_neigh(rocker_port, NULL,
|
|
|
- flags, ip_addr, n->ha);
|
|
|
err = rocker_world_port_neigh_destroy(rocker_port, n);
|
|
|
if (err)
|
|
|
netdev_warn(rocker_port->dev, "failed to handle neigh destroy (err %d)\n",
|
|
@@ -4485,7 +2041,6 @@ static int rocker_port_attr_get(struct net_device *dev,
|
|
|
memcpy(&attr->u.ppid.id, &rocker->hw.id, attr->u.ppid.id_len);
|
|
|
break;
|
|
|
case SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS:
|
|
|
- attr->u.brport_flags = rocker_port->brport_flags;
|
|
|
err = rocker_world_port_attr_bridge_flags_get(rocker_port,
|
|
|
&attr->u.brport_flags);
|
|
|
break;
|
|
@@ -4496,38 +2051,6 @@ static int rocker_port_attr_get(struct net_device *dev,
|
|
|
return err;
|
|
|
}
|
|
|
|
|
|
-static int rocker_port_brport_flags_set(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans,
|
|
|
- unsigned long brport_flags)
|
|
|
-{
|
|
|
- unsigned long orig_flags;
|
|
|
- int err = 0;
|
|
|
-
|
|
|
- orig_flags = rocker_port->brport_flags;
|
|
|
- rocker_port->brport_flags = brport_flags;
|
|
|
- if ((orig_flags ^ rocker_port->brport_flags) & BR_LEARNING &&
|
|
|
- !switchdev_trans_ph_prepare(trans))
|
|
|
- err = rocker_port_set_learning(rocker_port,
|
|
|
- !!(rocker_port->brport_flags & BR_LEARNING));
|
|
|
-
|
|
|
- if (switchdev_trans_ph_prepare(trans))
|
|
|
- rocker_port->brport_flags = orig_flags;
|
|
|
-
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_bridge_ageing_time(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans,
|
|
|
- u32 ageing_time)
|
|
|
-{
|
|
|
- if (!switchdev_trans_ph_prepare(trans)) {
|
|
|
- rocker_port->ageing_time = clock_t_to_jiffies(ageing_time);
|
|
|
- mod_timer(&rocker_port->rocker->fdb_cleanup_timer, jiffies);
|
|
|
- }
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
static int rocker_port_attr_set(struct net_device *dev,
|
|
|
const struct switchdev_attr *attr,
|
|
|
struct switchdev_trans *trans)
|
|
@@ -4537,28 +2060,16 @@ static int rocker_port_attr_set(struct net_device *dev,
|
|
|
|
|
|
switch (attr->id) {
|
|
|
case SWITCHDEV_ATTR_ID_PORT_STP_STATE:
|
|
|
- err = rocker_port_stp_update(rocker_port, trans, 0,
|
|
|
- attr->u.stp_state);
|
|
|
- if (err)
|
|
|
- break;
|
|
|
err = rocker_world_port_attr_stp_state_set(rocker_port,
|
|
|
attr->u.stp_state,
|
|
|
trans);
|
|
|
break;
|
|
|
case SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS:
|
|
|
- err = rocker_port_brport_flags_set(rocker_port, trans,
|
|
|
- attr->u.brport_flags);
|
|
|
- if (err)
|
|
|
- break;
|
|
|
err = rocker_world_port_attr_bridge_flags_set(rocker_port,
|
|
|
attr->u.brport_flags,
|
|
|
trans);
|
|
|
break;
|
|
|
case SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME:
|
|
|
- err = rocker_port_bridge_ageing_time(rocker_port, trans,
|
|
|
- attr->u.ageing_time);
|
|
|
- if (err)
|
|
|
- break;
|
|
|
err = rocker_world_port_attr_bridge_ageing_time_set(rocker_port,
|
|
|
attr->u.ageing_time,
|
|
|
trans);
|
|
@@ -4571,90 +2082,25 @@ static int rocker_port_attr_set(struct net_device *dev,
|
|
|
return err;
|
|
|
}
|
|
|
|
|
|
-static int rocker_port_vlan_add(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans,
|
|
|
- u16 vid, u16 flags)
|
|
|
-{
|
|
|
- int err;
|
|
|
-
|
|
|
- /* XXX deal with flags for PVID and untagged */
|
|
|
-
|
|
|
- err = rocker_port_vlan(rocker_port, trans, 0, vid);
|
|
|
- if (err)
|
|
|
- return err;
|
|
|
-
|
|
|
- err = rocker_port_router_mac(rocker_port, trans, 0, htons(vid));
|
|
|
- if (err)
|
|
|
- rocker_port_vlan(rocker_port, trans,
|
|
|
- ROCKER_OP_FLAG_REMOVE, vid);
|
|
|
-
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_vlans_add(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans,
|
|
|
- const struct switchdev_obj_port_vlan *vlan)
|
|
|
-{
|
|
|
- u16 vid;
|
|
|
- int err;
|
|
|
-
|
|
|
- for (vid = vlan->vid_begin; vid <= vlan->vid_end; vid++) {
|
|
|
- err = rocker_port_vlan_add(rocker_port, trans,
|
|
|
- vid, vlan->flags);
|
|
|
- if (err)
|
|
|
- return err;
|
|
|
- }
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_fdb_add(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans,
|
|
|
- const struct switchdev_obj_port_fdb *fdb)
|
|
|
-{
|
|
|
- __be16 vlan_id = rocker_port_vid_to_vlan(rocker_port, fdb->vid, NULL);
|
|
|
- int flags = 0;
|
|
|
-
|
|
|
- if (!rocker_port_is_bridged(rocker_port))
|
|
|
- return -EINVAL;
|
|
|
-
|
|
|
- return rocker_port_fdb(rocker_port, trans, fdb->addr, vlan_id, flags);
|
|
|
-}
|
|
|
-
|
|
|
static int rocker_port_obj_add(struct net_device *dev,
|
|
|
const struct switchdev_obj *obj,
|
|
|
struct switchdev_trans *trans)
|
|
|
{
|
|
|
struct rocker_port *rocker_port = netdev_priv(dev);
|
|
|
- const struct switchdev_obj_ipv4_fib *fib4;
|
|
|
int err = 0;
|
|
|
|
|
|
switch (obj->id) {
|
|
|
case SWITCHDEV_OBJ_ID_PORT_VLAN:
|
|
|
- err = rocker_port_vlans_add(rocker_port, trans,
|
|
|
- SWITCHDEV_OBJ_PORT_VLAN(obj));
|
|
|
- if (err)
|
|
|
- break;
|
|
|
err = rocker_world_port_obj_vlan_add(rocker_port,
|
|
|
SWITCHDEV_OBJ_PORT_VLAN(obj),
|
|
|
trans);
|
|
|
break;
|
|
|
case SWITCHDEV_OBJ_ID_IPV4_FIB:
|
|
|
- fib4 = SWITCHDEV_OBJ_IPV4_FIB(obj);
|
|
|
- err = rocker_port_fib_ipv4(rocker_port, trans,
|
|
|
- htonl(fib4->dst), fib4->dst_len,
|
|
|
- &fib4->fi, fib4->tb_id, 0);
|
|
|
- if (err)
|
|
|
- break;
|
|
|
err = rocker_world_port_obj_fib4_add(rocker_port,
|
|
|
SWITCHDEV_OBJ_IPV4_FIB(obj),
|
|
|
trans);
|
|
|
break;
|
|
|
case SWITCHDEV_OBJ_ID_PORT_FDB:
|
|
|
- err = rocker_port_fdb_add(rocker_port, trans,
|
|
|
- SWITCHDEV_OBJ_PORT_FDB(obj));
|
|
|
- if (err)
|
|
|
- break;
|
|
|
err = rocker_world_port_obj_fdb_add(rocker_port,
|
|
|
SWITCHDEV_OBJ_PORT_FDB(obj),
|
|
|
trans);
|
|
@@ -4667,80 +2113,22 @@ static int rocker_port_obj_add(struct net_device *dev,
|
|
|
return err;
|
|
|
}
|
|
|
|
|
|
-static int rocker_port_vlan_del(struct rocker_port *rocker_port,
|
|
|
- u16 vid, u16 flags)
|
|
|
-{
|
|
|
- int err;
|
|
|
-
|
|
|
- err = rocker_port_router_mac(rocker_port, NULL,
|
|
|
- ROCKER_OP_FLAG_REMOVE, htons(vid));
|
|
|
- if (err)
|
|
|
- return err;
|
|
|
-
|
|
|
- return rocker_port_vlan(rocker_port, NULL,
|
|
|
- ROCKER_OP_FLAG_REMOVE, vid);
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_vlans_del(struct rocker_port *rocker_port,
|
|
|
- const struct switchdev_obj_port_vlan *vlan)
|
|
|
-{
|
|
|
- u16 vid;
|
|
|
- int err;
|
|
|
-
|
|
|
- for (vid = vlan->vid_begin; vid <= vlan->vid_end; vid++) {
|
|
|
- err = rocker_port_vlan_del(rocker_port, vid, vlan->flags);
|
|
|
- if (err)
|
|
|
- return err;
|
|
|
- }
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_fdb_del(struct rocker_port *rocker_port,
|
|
|
- struct switchdev_trans *trans,
|
|
|
- const struct switchdev_obj_port_fdb *fdb)
|
|
|
-{
|
|
|
- __be16 vlan_id = rocker_port_vid_to_vlan(rocker_port, fdb->vid, NULL);
|
|
|
- int flags = ROCKER_OP_FLAG_REMOVE;
|
|
|
-
|
|
|
- if (!rocker_port_is_bridged(rocker_port))
|
|
|
- return -EINVAL;
|
|
|
-
|
|
|
- return rocker_port_fdb(rocker_port, trans, fdb->addr, vlan_id, flags);
|
|
|
-}
|
|
|
-
|
|
|
static int rocker_port_obj_del(struct net_device *dev,
|
|
|
const struct switchdev_obj *obj)
|
|
|
{
|
|
|
struct rocker_port *rocker_port = netdev_priv(dev);
|
|
|
- const struct switchdev_obj_ipv4_fib *fib4;
|
|
|
int err = 0;
|
|
|
|
|
|
switch (obj->id) {
|
|
|
case SWITCHDEV_OBJ_ID_PORT_VLAN:
|
|
|
- err = rocker_port_vlans_del(rocker_port,
|
|
|
- SWITCHDEV_OBJ_PORT_VLAN(obj));
|
|
|
- if (err)
|
|
|
- break;
|
|
|
err = rocker_world_port_obj_vlan_del(rocker_port,
|
|
|
SWITCHDEV_OBJ_PORT_VLAN(obj));
|
|
|
break;
|
|
|
case SWITCHDEV_OBJ_ID_IPV4_FIB:
|
|
|
- fib4 = SWITCHDEV_OBJ_IPV4_FIB(obj);
|
|
|
- err = rocker_port_fib_ipv4(rocker_port, NULL,
|
|
|
- htonl(fib4->dst), fib4->dst_len,
|
|
|
- &fib4->fi, fib4->tb_id,
|
|
|
- ROCKER_OP_FLAG_REMOVE);
|
|
|
- if (err)
|
|
|
- break;
|
|
|
err = rocker_world_port_obj_fib4_del(rocker_port,
|
|
|
SWITCHDEV_OBJ_IPV4_FIB(obj));
|
|
|
break;
|
|
|
case SWITCHDEV_OBJ_ID_PORT_FDB:
|
|
|
- err = rocker_port_fdb_del(rocker_port, NULL,
|
|
|
- SWITCHDEV_OBJ_PORT_FDB(obj));
|
|
|
- if (err)
|
|
|
- break;
|
|
|
err = rocker_world_port_obj_fdb_del(rocker_port,
|
|
|
SWITCHDEV_OBJ_PORT_FDB(obj));
|
|
|
break;
|
|
@@ -4752,57 +2140,6 @@ static int rocker_port_obj_del(struct net_device *dev,
|
|
|
return err;
|
|
|
}
|
|
|
|
|
|
-static int rocker_port_fdb_dump(const struct rocker_port *rocker_port,
|
|
|
- struct switchdev_obj_port_fdb *fdb,
|
|
|
- switchdev_obj_dump_cb_t *cb)
|
|
|
-{
|
|
|
- struct rocker *rocker = rocker_port->rocker;
|
|
|
- struct rocker_fdb_tbl_entry *found;
|
|
|
- struct hlist_node *tmp;
|
|
|
- unsigned long lock_flags;
|
|
|
- int bkt;
|
|
|
- int err = 0;
|
|
|
-
|
|
|
- spin_lock_irqsave(&rocker->fdb_tbl_lock, lock_flags);
|
|
|
- hash_for_each_safe(rocker->fdb_tbl, bkt, tmp, found, entry) {
|
|
|
- if (found->key.rocker_port != rocker_port)
|
|
|
- continue;
|
|
|
- ether_addr_copy(fdb->addr, found->key.addr);
|
|
|
- fdb->ndm_state = NUD_REACHABLE;
|
|
|
- fdb->vid = rocker_port_vlan_to_vid(rocker_port,
|
|
|
- found->key.vlan_id);
|
|
|
- err = cb(&fdb->obj);
|
|
|
- if (err)
|
|
|
- break;
|
|
|
- }
|
|
|
- spin_unlock_irqrestore(&rocker->fdb_tbl_lock, lock_flags);
|
|
|
-
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_vlan_dump(const struct rocker_port *rocker_port,
|
|
|
- struct switchdev_obj_port_vlan *vlan,
|
|
|
- switchdev_obj_dump_cb_t *cb)
|
|
|
-{
|
|
|
- u16 vid;
|
|
|
- int err = 0;
|
|
|
-
|
|
|
- for (vid = 1; vid < VLAN_N_VID; vid++) {
|
|
|
- if (!test_bit(vid, rocker_port->vlan_bitmap))
|
|
|
- continue;
|
|
|
- vlan->flags = 0;
|
|
|
- if (rocker_vlan_id_is_internal(htons(vid)))
|
|
|
- vlan->flags |= BRIDGE_VLAN_INFO_PVID;
|
|
|
- vlan->vid_begin = vid;
|
|
|
- vlan->vid_end = vid;
|
|
|
- err = cb(&vlan->obj);
|
|
|
- if (err)
|
|
|
- break;
|
|
|
- }
|
|
|
-
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
static int rocker_port_obj_dump(struct net_device *dev,
|
|
|
struct switchdev_obj *obj,
|
|
|
switchdev_obj_dump_cb_t *cb)
|
|
@@ -4812,19 +2149,11 @@ static int rocker_port_obj_dump(struct net_device *dev,
|
|
|
|
|
|
switch (obj->id) {
|
|
|
case SWITCHDEV_OBJ_ID_PORT_FDB:
|
|
|
- err = rocker_port_fdb_dump(rocker_port,
|
|
|
- SWITCHDEV_OBJ_PORT_FDB(obj), cb);
|
|
|
- if (err)
|
|
|
- break;
|
|
|
err = rocker_world_port_obj_fdb_dump(rocker_port,
|
|
|
SWITCHDEV_OBJ_PORT_FDB(obj),
|
|
|
cb);
|
|
|
break;
|
|
|
case SWITCHDEV_OBJ_ID_PORT_VLAN:
|
|
|
- err = rocker_port_vlan_dump(rocker_port,
|
|
|
- SWITCHDEV_OBJ_PORT_VLAN(obj), cb);
|
|
|
- if (err)
|
|
|
- break;
|
|
|
err = rocker_world_port_obj_vlan_dump(rocker_port,
|
|
|
SWITCHDEV_OBJ_PORT_VLAN(obj),
|
|
|
cb);
|
|
@@ -5162,7 +2491,6 @@ static void rocker_remove_ports(struct rocker *rocker)
|
|
|
rocker_port = rocker->ports[i];
|
|
|
if (!rocker_port)
|
|
|
continue;
|
|
|
- rocker_port_ig_tbl(rocker_port, NULL, ROCKER_OP_FLAG_REMOVE);
|
|
|
rocker_world_port_fini(rocker_port);
|
|
|
unregister_netdev(rocker_port->dev);
|
|
|
rocker_world_port_post_fini(rocker_port);
|
|
@@ -5191,7 +2519,6 @@ static int rocker_probe_port(struct rocker *rocker, unsigned int port_number)
|
|
|
const struct pci_dev *pdev = rocker->pdev;
|
|
|
struct rocker_port *rocker_port;
|
|
|
struct net_device *dev;
|
|
|
- u16 untagged_vid = 0;
|
|
|
int err;
|
|
|
|
|
|
dev = alloc_etherdev(sizeof(struct rocker_port));
|
|
@@ -5202,8 +2529,6 @@ static int rocker_probe_port(struct rocker *rocker, unsigned int port_number)
|
|
|
rocker_port->rocker = rocker;
|
|
|
rocker_port->port_number = port_number;
|
|
|
rocker_port->pport = port_number + 1;
|
|
|
- rocker_port->brport_flags = BR_LEARNING | BR_LEARNING_SYNC;
|
|
|
- rocker_port->ageing_time = BR_DEFAULT_AGEING_TIME;
|
|
|
|
|
|
err = rocker_world_check_init(rocker_port);
|
|
|
if (err) {
|
|
@@ -5241,32 +2566,8 @@ static int rocker_probe_port(struct rocker *rocker, unsigned int port_number)
|
|
|
goto err_world_port_init;
|
|
|
}
|
|
|
|
|
|
- switchdev_port_fwd_mark_set(rocker_port->dev, NULL, false);
|
|
|
-
|
|
|
- rocker_port_set_learning(rocker_port,
|
|
|
- !!(rocker_port->brport_flags & BR_LEARNING));
|
|
|
-
|
|
|
- err = rocker_port_ig_tbl(rocker_port, NULL, 0);
|
|
|
- if (err) {
|
|
|
- netdev_err(rocker_port->dev, "install ig port table failed\n");
|
|
|
- goto err_port_ig_tbl;
|
|
|
- }
|
|
|
-
|
|
|
- rocker_port->internal_vlan_id =
|
|
|
- rocker_port_internal_vlan_id_get(rocker_port, dev->ifindex);
|
|
|
-
|
|
|
- err = rocker_port_vlan_add(rocker_port, NULL, untagged_vid, 0);
|
|
|
- if (err) {
|
|
|
- netdev_err(rocker_port->dev, "install untagged VLAN failed\n");
|
|
|
- goto err_untagged_vlan;
|
|
|
- }
|
|
|
-
|
|
|
return 0;
|
|
|
|
|
|
-err_untagged_vlan:
|
|
|
- rocker_port_ig_tbl(rocker_port, NULL, ROCKER_OP_FLAG_REMOVE);
|
|
|
-err_port_ig_tbl:
|
|
|
- rocker_world_port_fini(rocker_port);
|
|
|
err_world_port_init:
|
|
|
rocker->ports[port_number] = NULL;
|
|
|
unregister_netdev(dev);
|
|
@@ -5432,16 +2733,6 @@ static int rocker_probe(struct pci_dev *pdev, const struct pci_device_id *id)
|
|
|
|
|
|
rocker->hw.id = rocker_read64(rocker, SWITCH_ID);
|
|
|
|
|
|
- err = rocker_init_tbls(rocker);
|
|
|
- if (err) {
|
|
|
- dev_err(&pdev->dev, "cannot init rocker tables\n");
|
|
|
- goto err_init_tbls;
|
|
|
- }
|
|
|
-
|
|
|
- setup_timer(&rocker->fdb_cleanup_timer, rocker_fdb_cleanup,
|
|
|
- (unsigned long) rocker);
|
|
|
- mod_timer(&rocker->fdb_cleanup_timer, jiffies);
|
|
|
-
|
|
|
err = rocker_probe_ports(rocker);
|
|
|
if (err) {
|
|
|
dev_err(&pdev->dev, "failed to probe ports\n");
|
|
@@ -5454,9 +2745,6 @@ static int rocker_probe(struct pci_dev *pdev, const struct pci_device_id *id)
|
|
|
return 0;
|
|
|
|
|
|
err_probe_ports:
|
|
|
- del_timer_sync(&rocker->fdb_cleanup_timer);
|
|
|
- rocker_free_tbls(rocker);
|
|
|
-err_init_tbls:
|
|
|
free_irq(rocker_msix_vector(rocker, ROCKER_MSIX_VEC_EVENT), rocker);
|
|
|
err_request_event_irq:
|
|
|
free_irq(rocker_msix_vector(rocker, ROCKER_MSIX_VEC_CMD), rocker);
|
|
@@ -5482,8 +2770,6 @@ static void rocker_remove(struct pci_dev *pdev)
|
|
|
{
|
|
|
struct rocker *rocker = pci_get_drvdata(pdev);
|
|
|
|
|
|
- del_timer_sync(&rocker->fdb_cleanup_timer);
|
|
|
- rocker_free_tbls(rocker);
|
|
|
rocker_write32(rocker, CONTROL, ROCKER_CONTROL_RESET);
|
|
|
rocker_remove_ports(rocker);
|
|
|
free_irq(rocker_msix_vector(rocker, ROCKER_MSIX_VEC_EVENT), rocker);
|
|
@@ -5512,100 +2798,6 @@ static bool rocker_port_dev_check(const struct net_device *dev)
|
|
|
return dev->netdev_ops == &rocker_port_netdev_ops;
|
|
|
}
|
|
|
|
|
|
-static int rocker_port_bridge_join(struct rocker_port *rocker_port,
|
|
|
- struct net_device *bridge)
|
|
|
-{
|
|
|
- u16 untagged_vid = 0;
|
|
|
- int err;
|
|
|
-
|
|
|
- /* Port is joining bridge, so the internal VLAN for the
|
|
|
- * port is going to change to the bridge internal VLAN.
|
|
|
- * Let's remove untagged VLAN (vid=0) from port and
|
|
|
- * re-add once internal VLAN has changed.
|
|
|
- */
|
|
|
-
|
|
|
- err = rocker_port_vlan_del(rocker_port, untagged_vid, 0);
|
|
|
- if (err)
|
|
|
- return err;
|
|
|
-
|
|
|
- rocker_port_internal_vlan_id_put(rocker_port,
|
|
|
- rocker_port->dev->ifindex);
|
|
|
- rocker_port->internal_vlan_id =
|
|
|
- rocker_port_internal_vlan_id_get(rocker_port, bridge->ifindex);
|
|
|
-
|
|
|
- rocker_port->bridge_dev = bridge;
|
|
|
- switchdev_port_fwd_mark_set(rocker_port->dev, bridge, true);
|
|
|
-
|
|
|
- return rocker_port_vlan_add(rocker_port, NULL, untagged_vid, 0);
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_bridge_leave(struct rocker_port *rocker_port)
|
|
|
-{
|
|
|
- u16 untagged_vid = 0;
|
|
|
- int err;
|
|
|
-
|
|
|
- err = rocker_port_vlan_del(rocker_port, untagged_vid, 0);
|
|
|
- if (err)
|
|
|
- return err;
|
|
|
-
|
|
|
- rocker_port_internal_vlan_id_put(rocker_port,
|
|
|
- rocker_port->bridge_dev->ifindex);
|
|
|
- rocker_port->internal_vlan_id =
|
|
|
- rocker_port_internal_vlan_id_get(rocker_port,
|
|
|
- rocker_port->dev->ifindex);
|
|
|
-
|
|
|
- switchdev_port_fwd_mark_set(rocker_port->dev, rocker_port->bridge_dev,
|
|
|
- false);
|
|
|
- rocker_port->bridge_dev = NULL;
|
|
|
-
|
|
|
- err = rocker_port_vlan_add(rocker_port, NULL, untagged_vid, 0);
|
|
|
- if (err)
|
|
|
- return err;
|
|
|
-
|
|
|
- if (rocker_port->dev->flags & IFF_UP)
|
|
|
- err = rocker_port_fwd_enable(rocker_port, NULL, 0);
|
|
|
-
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_ovs_changed(struct rocker_port *rocker_port,
|
|
|
- struct net_device *master)
|
|
|
-{
|
|
|
- int err;
|
|
|
-
|
|
|
- rocker_port->bridge_dev = master;
|
|
|
-
|
|
|
- err = rocker_port_fwd_disable(rocker_port, NULL, 0);
|
|
|
- if (err)
|
|
|
- return err;
|
|
|
- err = rocker_port_fwd_enable(rocker_port, NULL, 0);
|
|
|
-
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_master_linked(struct rocker_port *rocker_port,
|
|
|
- struct net_device *master)
|
|
|
-{
|
|
|
- int err = 0;
|
|
|
-
|
|
|
- if (netif_is_bridge_master(master))
|
|
|
- err = rocker_port_bridge_join(rocker_port, master);
|
|
|
- else if (netif_is_ovs_master(master))
|
|
|
- err = rocker_port_ovs_changed(rocker_port, master);
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
-static int rocker_port_master_unlinked(struct rocker_port *rocker_port)
|
|
|
-{
|
|
|
- int err = 0;
|
|
|
-
|
|
|
- if (rocker_port_is_bridged(rocker_port))
|
|
|
- err = rocker_port_bridge_leave(rocker_port);
|
|
|
- else if (rocker_port_is_ovsed(rocker_port))
|
|
|
- err = rocker_port_ovs_changed(rocker_port, NULL);
|
|
|
- return err;
|
|
|
-}
|
|
|
-
|
|
|
static int rocker_netdevice_event(struct notifier_block *unused,
|
|
|
unsigned long event, void *ptr)
|
|
|
{
|
|
@@ -5629,23 +2821,13 @@ static int rocker_netdevice_event(struct notifier_block *unused,
|
|
|
if (err)
|
|
|
netdev_warn(dev, "failed to reflect master linked (err %d)\n",
|
|
|
err);
|
|
|
- err = rocker_port_master_linked(rocker_port,
|
|
|
- info->upper_dev);
|
|
|
- if (err)
|
|
|
- netdev_warn(dev, "failed to reflect master linked (err %d)\n",
|
|
|
- err);
|
|
|
} else {
|
|
|
err = rocker_world_port_master_unlinked(rocker_port,
|
|
|
info->upper_dev);
|
|
|
if (err)
|
|
|
netdev_warn(dev, "failed to reflect master unlinked (err %d)\n",
|
|
|
err);
|
|
|
- err = rocker_port_master_unlinked(rocker_port);
|
|
|
- if (err)
|
|
|
- netdev_warn(dev, "failed to reflect master unlinked (err %d)\n",
|
|
|
- err);
|
|
|
}
|
|
|
- break;
|
|
|
}
|
|
|
out:
|
|
|
return NOTIFY_DONE;
|
|
@@ -5659,16 +2841,6 @@ static struct notifier_block rocker_netdevice_nb __read_mostly = {
|
|
|
* Net event notifier event handler
|
|
|
************************************/
|
|
|
|
|
|
-static int rocker_neigh_update(struct net_device *dev, struct neighbour *n)
|
|
|
-{
|
|
|
- struct rocker_port *rocker_port = netdev_priv(dev);
|
|
|
- int flags = (n->nud_state & NUD_VALID ? 0 : ROCKER_OP_FLAG_REMOVE) |
|
|
|
- ROCKER_OP_FLAG_NOWAIT;
|
|
|
- __be32 ip_addr = *(__be32 *)n->primary_key;
|
|
|
-
|
|
|
- return rocker_port_ipv4_neigh(rocker_port, NULL, flags, ip_addr, n->ha);
|
|
|
-}
|
|
|
-
|
|
|
static int rocker_netevent_event(struct notifier_block *unused,
|
|
|
unsigned long event, void *ptr)
|
|
|
{
|
|
@@ -5689,11 +2861,6 @@ static int rocker_netevent_event(struct notifier_block *unused,
|
|
|
if (err)
|
|
|
netdev_warn(dev, "failed to handle neigh update (err %d)\n",
|
|
|
err);
|
|
|
- err = rocker_neigh_update(dev, n);
|
|
|
- if (err)
|
|
|
- netdev_warn(dev,
|
|
|
- "failed to handle neigh update (err %d)\n",
|
|
|
- err);
|
|
|
break;
|
|
|
}
|
|
|
|