mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-03-18 21:25:11 +00:00
mlxsw: spectrum_trap: Lookup and pass cookie down to devlink_trap_report()
Use the cookie index received along with the packet to lookup original flow_offload cookie binary and pass it down to devlink_trap_report(). Add "fa_cookie" metadata to the ACL trap. Signed-off-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: Ido Schimmel <idosch@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
78a7dcb7c9
commit
6de9fceeaa
4 changed files with 63 additions and 3 deletions
drivers/net/ethernet/mellanox/mlxsw
|
@ -769,6 +769,22 @@ static void mlxsw_afa_cookie_put(struct mlxsw_afa *mlxsw_afa,
|
|||
mlxsw_afa_cookie_destroy(mlxsw_afa, cookie);
|
||||
}
|
||||
|
||||
/* RCU read lock must be held */
|
||||
const struct flow_action_cookie *
|
||||
mlxsw_afa_cookie_lookup(struct mlxsw_afa *mlxsw_afa, u32 cookie_index)
|
||||
{
|
||||
struct mlxsw_afa_cookie *cookie;
|
||||
|
||||
/* 0 index means no cookie */
|
||||
if (!cookie_index)
|
||||
return NULL;
|
||||
cookie = idr_find(&mlxsw_afa->cookie_idr, cookie_index);
|
||||
if (!cookie)
|
||||
return NULL;
|
||||
return &cookie->fa_cookie;
|
||||
}
|
||||
EXPORT_SYMBOL(mlxsw_afa_cookie_lookup);
|
||||
|
||||
struct mlxsw_afa_cookie_ref {
|
||||
struct mlxsw_afa_resource resource;
|
||||
struct mlxsw_afa_cookie *cookie;
|
||||
|
|
|
@ -43,6 +43,8 @@ int mlxsw_afa_block_activity_get(struct mlxsw_afa_block *block, bool *activity);
|
|||
int mlxsw_afa_block_continue(struct mlxsw_afa_block *block);
|
||||
int mlxsw_afa_block_jump(struct mlxsw_afa_block *block, u16 group_id);
|
||||
int mlxsw_afa_block_terminate(struct mlxsw_afa_block *block);
|
||||
const struct flow_action_cookie *
|
||||
mlxsw_afa_cookie_lookup(struct mlxsw_afa *mlxsw_afa, u32 cookie_index);
|
||||
int mlxsw_afa_block_append_drop(struct mlxsw_afa_block *block, bool ingress,
|
||||
const struct flow_action_cookie *fa_cookie,
|
||||
struct netlink_ext_ack *extack);
|
||||
|
|
|
@ -780,6 +780,12 @@ int mlxsw_sp_acl_rule_get_stats(struct mlxsw_sp *mlxsw_sp,
|
|||
|
||||
struct mlxsw_sp_fid *mlxsw_sp_acl_dummy_fid(struct mlxsw_sp *mlxsw_sp);
|
||||
|
||||
static inline const struct flow_action_cookie *
|
||||
mlxsw_sp_acl_act_cookie_lookup(struct mlxsw_sp *mlxsw_sp, u32 cookie_index)
|
||||
{
|
||||
return mlxsw_afa_cookie_lookup(mlxsw_sp->afa, cookie_index);
|
||||
}
|
||||
|
||||
int mlxsw_sp_acl_init(struct mlxsw_sp *mlxsw_sp);
|
||||
void mlxsw_sp_acl_fini(struct mlxsw_sp *mlxsw_sp);
|
||||
u32 mlxsw_sp_acl_region_rehash_intrvl_get(struct mlxsw_sp *mlxsw_sp);
|
||||
|
|
|
@ -75,6 +75,35 @@ static void mlxsw_sp_rx_drop_listener(struct sk_buff *skb, u8 local_port,
|
|||
consume_skb(skb);
|
||||
}
|
||||
|
||||
static void mlxsw_sp_rx_acl_drop_listener(struct sk_buff *skb, u8 local_port,
|
||||
void *trap_ctx)
|
||||
{
|
||||
u32 cookie_index = mlxsw_skb_cb(skb)->cookie_index;
|
||||
const struct flow_action_cookie *fa_cookie;
|
||||
struct devlink_port *in_devlink_port;
|
||||
struct mlxsw_sp_port *mlxsw_sp_port;
|
||||
struct mlxsw_sp *mlxsw_sp;
|
||||
struct devlink *devlink;
|
||||
int err;
|
||||
|
||||
mlxsw_sp = devlink_trap_ctx_priv(trap_ctx);
|
||||
mlxsw_sp_port = mlxsw_sp->ports[local_port];
|
||||
|
||||
err = mlxsw_sp_rx_listener(mlxsw_sp, skb, local_port, mlxsw_sp_port);
|
||||
if (err)
|
||||
return;
|
||||
|
||||
devlink = priv_to_devlink(mlxsw_sp->core);
|
||||
in_devlink_port = mlxsw_core_port_devlink_port_get(mlxsw_sp->core,
|
||||
local_port);
|
||||
skb_push(skb, ETH_HLEN);
|
||||
rcu_read_lock();
|
||||
fa_cookie = mlxsw_sp_acl_act_cookie_lookup(mlxsw_sp, cookie_index);
|
||||
devlink_trap_report(devlink, skb, trap_ctx, in_devlink_port, fa_cookie);
|
||||
rcu_read_unlock();
|
||||
consume_skb(skb);
|
||||
}
|
||||
|
||||
static void mlxsw_sp_rx_exception_listener(struct sk_buff *skb, u8 local_port,
|
||||
void *trap_ctx)
|
||||
{
|
||||
|
@ -106,6 +135,11 @@ static void mlxsw_sp_rx_exception_listener(struct sk_buff *skb, u8 local_port,
|
|||
DEVLINK_TRAP_GROUP_GENERIC(_group_id), \
|
||||
MLXSW_SP_TRAP_METADATA)
|
||||
|
||||
#define MLXSW_SP_TRAP_DROP_EXT(_id, _group_id, _metadata) \
|
||||
DEVLINK_TRAP_GENERIC(DROP, DROP, _id, \
|
||||
DEVLINK_TRAP_GROUP_GENERIC(_group_id), \
|
||||
MLXSW_SP_TRAP_METADATA | (_metadata))
|
||||
|
||||
#define MLXSW_SP_TRAP_DRIVER_DROP(_id, _group_id) \
|
||||
DEVLINK_TRAP_DRIVER(DROP, DROP, DEVLINK_MLXSW_TRAP_ID_##_id, \
|
||||
DEVLINK_MLXSW_TRAP_NAME_##_id, \
|
||||
|
@ -123,7 +157,7 @@ static void mlxsw_sp_rx_exception_listener(struct sk_buff *skb, u8 local_port,
|
|||
SET_FW_DEFAULT, SP_##_group_id)
|
||||
|
||||
#define MLXSW_SP_RXL_ACL_DISCARD(_id, _en_group_id, _dis_group_id) \
|
||||
MLXSW_RXL_DIS(mlxsw_sp_rx_drop_listener, DISCARD_##_id, \
|
||||
MLXSW_RXL_DIS(mlxsw_sp_rx_acl_drop_listener, DISCARD_##_id, \
|
||||
TRAP_EXCEPTION_TO_CPU, false, SP_##_en_group_id, \
|
||||
SET_FW_DEFAULT, SP_##_dis_group_id)
|
||||
|
||||
|
@ -160,8 +194,10 @@ static const struct devlink_trap mlxsw_sp_traps_arr[] = {
|
|||
MLXSW_SP_TRAP_DROP(NON_ROUTABLE, L3_DROPS),
|
||||
MLXSW_SP_TRAP_EXCEPTION(DECAP_ERROR, TUNNEL_DROPS),
|
||||
MLXSW_SP_TRAP_DROP(OVERLAY_SMAC_MC, TUNNEL_DROPS),
|
||||
MLXSW_SP_TRAP_DROP(INGRESS_FLOW_ACTION_DROP, ACL_DROPS),
|
||||
MLXSW_SP_TRAP_DROP(EGRESS_FLOW_ACTION_DROP, ACL_DROPS),
|
||||
MLXSW_SP_TRAP_DROP_EXT(INGRESS_FLOW_ACTION_DROP, ACL_DROPS,
|
||||
DEVLINK_TRAP_METADATA_TYPE_F_FA_COOKIE),
|
||||
MLXSW_SP_TRAP_DROP_EXT(EGRESS_FLOW_ACTION_DROP, ACL_DROPS,
|
||||
DEVLINK_TRAP_METADATA_TYPE_F_FA_COOKIE),
|
||||
};
|
||||
|
||||
static const struct mlxsw_listener mlxsw_sp_listeners_arr[] = {
|
||||
|
|
Loading…
Add table
Reference in a new issue