Commit b8afaedd authored by David S. Miller's avatar David S. Miller

Merge branch 'mlxsw-Prepare-SPAN-API-for-upcoming-changes'

Ido Schimmel says:

====================
mlxsw: Prepare SPAN API for upcoming changes

Switched port analyzer (SPAN) is used for packet mirroring. Over mlxsw
this is achieved by attaching tc-mirred action to either matchall or
flower classifier.

The current API used to configure SPAN consists of two functions:
mlxsw_sp_span_mirror_add() and mlxsw_sp_span_mirror_del().

These two functions pack a lot of different operations:

* SPAN agent configuration: Determining the egress port and optional
  headers that need to encapsulate the mirrored packet (when mirroring
  to a gretap, for example)

* Egress mirror buffer configuration: Allocating / freeing a buffer when
  port is analyzed (inspected) at egress

* SPAN agent binding: Binding the SPAN agent to a trigger, if any. The
  current triggers are incoming / outgoing packet and they are only used
  for matchall-based mirroring

This non-modular design makes it difficult to extend the API for future
changes, such as new mirror targets (CPU) and new global triggers (early
dropped packets, for example).

Therefore, this patch set gradually adds APIs for above mentioned
operations and then converts the two existing users to use it instead of
the old API. No functional changes intended. Tested with existing
mirroring selftests.

Patch set overview:

Patches #1-#5 gradually add the new API
Patches #6-#8 convert existing users to use the new API
Patch #9 removes the old API
====================
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parents 07f81727 ca089223
...@@ -136,28 +136,35 @@ mlxsw_sp_act_mirror_add(void *priv, u8 local_in_port, ...@@ -136,28 +136,35 @@ mlxsw_sp_act_mirror_add(void *priv, u8 local_in_port,
const struct net_device *out_dev, const struct net_device *out_dev,
bool ingress, int *p_span_id) bool ingress, int *p_span_id)
{ {
struct mlxsw_sp_port *in_port; struct mlxsw_sp_port *mlxsw_sp_port;
struct mlxsw_sp *mlxsw_sp = priv; struct mlxsw_sp *mlxsw_sp = priv;
enum mlxsw_sp_span_type type; int err;
type = ingress ? MLXSW_SP_SPAN_INGRESS : MLXSW_SP_SPAN_EGRESS; err = mlxsw_sp_span_agent_get(mlxsw_sp, out_dev, p_span_id);
in_port = mlxsw_sp->ports[local_in_port]; if (err)
return err;
mlxsw_sp_port = mlxsw_sp->ports[local_in_port];
err = mlxsw_sp_span_analyzed_port_get(mlxsw_sp_port, ingress);
if (err)
goto err_analyzed_port_get;
return mlxsw_sp_span_mirror_add(in_port, out_dev, type, return 0;
false, p_span_id);
err_analyzed_port_get:
mlxsw_sp_span_agent_put(mlxsw_sp, *p_span_id);
return err;
} }
static void static void
mlxsw_sp_act_mirror_del(void *priv, u8 local_in_port, int span_id, bool ingress) mlxsw_sp_act_mirror_del(void *priv, u8 local_in_port, int span_id, bool ingress)
{ {
struct mlxsw_sp_port *mlxsw_sp_port;
struct mlxsw_sp *mlxsw_sp = priv; struct mlxsw_sp *mlxsw_sp = priv;
struct mlxsw_sp_port *in_port;
enum mlxsw_sp_span_type type;
type = ingress ? MLXSW_SP_SPAN_INGRESS : MLXSW_SP_SPAN_EGRESS;
in_port = mlxsw_sp->ports[local_in_port];
mlxsw_sp_span_mirror_del(in_port, span_id, type, false); mlxsw_sp_port = mlxsw_sp->ports[local_in_port];
mlxsw_sp_span_analyzed_port_put(mlxsw_sp_port, ingress);
mlxsw_sp_span_agent_put(mlxsw_sp, span_id);
} }
const struct mlxsw_afa_ops mlxsw_sp1_act_afa_ops = { const struct mlxsw_afa_ops mlxsw_sp1_act_afa_ops = {
......
...@@ -48,31 +48,57 @@ static int ...@@ -48,31 +48,57 @@ static int
mlxsw_sp_mall_port_mirror_add(struct mlxsw_sp_port *mlxsw_sp_port, mlxsw_sp_mall_port_mirror_add(struct mlxsw_sp_port *mlxsw_sp_port,
struct mlxsw_sp_mall_entry *mall_entry) struct mlxsw_sp_mall_entry *mall_entry)
{ {
enum mlxsw_sp_span_type span_type; struct mlxsw_sp *mlxsw_sp = mlxsw_sp_port->mlxsw_sp;
struct mlxsw_sp_span_trigger_parms parms;
enum mlxsw_sp_span_trigger trigger;
int err;
if (!mall_entry->mirror.to_dev) { if (!mall_entry->mirror.to_dev) {
netdev_err(mlxsw_sp_port->dev, "Could not find requested device\n"); netdev_err(mlxsw_sp_port->dev, "Could not find requested device\n");
return -EINVAL; return -EINVAL;
} }
span_type = mall_entry->ingress ? MLXSW_SP_SPAN_INGRESS : err = mlxsw_sp_span_agent_get(mlxsw_sp, mall_entry->mirror.to_dev,
MLXSW_SP_SPAN_EGRESS;
return mlxsw_sp_span_mirror_add(mlxsw_sp_port,
mall_entry->mirror.to_dev,
span_type, true,
&mall_entry->mirror.span_id); &mall_entry->mirror.span_id);
if (err)
return err;
err = mlxsw_sp_span_analyzed_port_get(mlxsw_sp_port,
mall_entry->ingress);
if (err)
goto err_analyzed_port_get;
trigger = mall_entry->ingress ? MLXSW_SP_SPAN_TRIGGER_INGRESS :
MLXSW_SP_SPAN_TRIGGER_EGRESS;
parms.span_id = mall_entry->mirror.span_id;
err = mlxsw_sp_span_agent_bind(mlxsw_sp, trigger, mlxsw_sp_port,
&parms);
if (err)
goto err_agent_bind;
return 0;
err_agent_bind:
mlxsw_sp_span_analyzed_port_put(mlxsw_sp_port, mall_entry->ingress);
err_analyzed_port_get:
mlxsw_sp_span_agent_put(mlxsw_sp, mall_entry->mirror.span_id);
return err;
} }
static void static void
mlxsw_sp_mall_port_mirror_del(struct mlxsw_sp_port *mlxsw_sp_port, mlxsw_sp_mall_port_mirror_del(struct mlxsw_sp_port *mlxsw_sp_port,
struct mlxsw_sp_mall_entry *mall_entry) struct mlxsw_sp_mall_entry *mall_entry)
{ {
enum mlxsw_sp_span_type span_type; struct mlxsw_sp *mlxsw_sp = mlxsw_sp_port->mlxsw_sp;
struct mlxsw_sp_span_trigger_parms parms;
span_type = mall_entry->ingress ? MLXSW_SP_SPAN_INGRESS : enum mlxsw_sp_span_trigger trigger;
MLXSW_SP_SPAN_EGRESS;
mlxsw_sp_span_mirror_del(mlxsw_sp_port, mall_entry->mirror.span_id, trigger = mall_entry->ingress ? MLXSW_SP_SPAN_TRIGGER_INGRESS :
span_type, true); MLXSW_SP_SPAN_TRIGGER_EGRESS;
parms.span_id = mall_entry->mirror.span_id;
mlxsw_sp_span_agent_unbind(mlxsw_sp, trigger, mlxsw_sp_port, &parms);
mlxsw_sp_span_analyzed_port_put(mlxsw_sp_port, mall_entry->ingress);
mlxsw_sp_span_agent_put(mlxsw_sp, mall_entry->mirror.span_id);
} }
static int mlxsw_sp_mall_port_sample_set(struct mlxsw_sp_port *mlxsw_sp_port, static int mlxsw_sp_mall_port_sample_set(struct mlxsw_sp_port *mlxsw_sp_port,
......
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
#include <linux/if_bridge.h> #include <linux/if_bridge.h>
#include <linux/list.h> #include <linux/list.h>
#include <linux/mutex.h>
#include <linux/refcount.h> #include <linux/refcount.h>
#include <linux/rtnetlink.h> #include <linux/rtnetlink.h>
#include <linux/workqueue.h> #include <linux/workqueue.h>
...@@ -20,11 +21,29 @@ ...@@ -20,11 +21,29 @@
struct mlxsw_sp_span { struct mlxsw_sp_span {
struct work_struct work; struct work_struct work;
struct mlxsw_sp *mlxsw_sp; struct mlxsw_sp *mlxsw_sp;
struct list_head analyzed_ports_list;
struct mutex analyzed_ports_lock; /* Protects analyzed_ports_list */
struct list_head trigger_entries_list;
atomic_t active_entries_count; atomic_t active_entries_count;
int entries_count; int entries_count;
struct mlxsw_sp_span_entry entries[]; struct mlxsw_sp_span_entry entries[];
}; };
struct mlxsw_sp_span_analyzed_port {
struct list_head list; /* Member of analyzed_ports_list */
refcount_t ref_count;
u8 local_port;
bool ingress;
};
struct mlxsw_sp_span_trigger_entry {
struct list_head list; /* Member of trigger_entries_list */
refcount_t ref_count;
u8 local_port;
enum mlxsw_sp_span_trigger trigger;
struct mlxsw_sp_span_trigger_parms parms;
};
static void mlxsw_sp_span_respin_work(struct work_struct *work); static void mlxsw_sp_span_respin_work(struct work_struct *work);
static u64 mlxsw_sp_span_occ_get(void *priv) static u64 mlxsw_sp_span_occ_get(void *priv)
...@@ -49,15 +68,14 @@ int mlxsw_sp_span_init(struct mlxsw_sp *mlxsw_sp) ...@@ -49,15 +68,14 @@ int mlxsw_sp_span_init(struct mlxsw_sp *mlxsw_sp)
return -ENOMEM; return -ENOMEM;
span->entries_count = entries_count; span->entries_count = entries_count;
atomic_set(&span->active_entries_count, 0); atomic_set(&span->active_entries_count, 0);
mutex_init(&span->analyzed_ports_lock);
INIT_LIST_HEAD(&span->analyzed_ports_list);
INIT_LIST_HEAD(&span->trigger_entries_list);
span->mlxsw_sp = mlxsw_sp; span->mlxsw_sp = mlxsw_sp;
mlxsw_sp->span = span; mlxsw_sp->span = span;
for (i = 0; i < mlxsw_sp->span->entries_count; i++) { for (i = 0; i < mlxsw_sp->span->entries_count; i++)
struct mlxsw_sp_span_entry *curr = &mlxsw_sp->span->entries[i]; mlxsw_sp->span->entries[i].id = i;
INIT_LIST_HEAD(&curr->bound_ports_list);
curr->id = i;
}
devlink_resource_occ_get_register(devlink, MLXSW_SP_RESOURCE_SPAN, devlink_resource_occ_get_register(devlink, MLXSW_SP_RESOURCE_SPAN,
mlxsw_sp_span_occ_get, mlxsw_sp); mlxsw_sp_span_occ_get, mlxsw_sp);
...@@ -69,16 +87,13 @@ int mlxsw_sp_span_init(struct mlxsw_sp *mlxsw_sp) ...@@ -69,16 +87,13 @@ int mlxsw_sp_span_init(struct mlxsw_sp *mlxsw_sp)
void mlxsw_sp_span_fini(struct mlxsw_sp *mlxsw_sp) void mlxsw_sp_span_fini(struct mlxsw_sp *mlxsw_sp)
{ {
struct devlink *devlink = priv_to_devlink(mlxsw_sp->core); struct devlink *devlink = priv_to_devlink(mlxsw_sp->core);
int i;
cancel_work_sync(&mlxsw_sp->span->work); cancel_work_sync(&mlxsw_sp->span->work);
devlink_resource_occ_get_unregister(devlink, MLXSW_SP_RESOURCE_SPAN); devlink_resource_occ_get_unregister(devlink, MLXSW_SP_RESOURCE_SPAN);
for (i = 0; i < mlxsw_sp->span->entries_count; i++) { WARN_ON_ONCE(!list_empty(&mlxsw_sp->span->trigger_entries_list));
struct mlxsw_sp_span_entry *curr = &mlxsw_sp->span->entries[i]; WARN_ON_ONCE(!list_empty(&mlxsw_sp->span->analyzed_ports_list));
mutex_destroy(&mlxsw_sp->span->analyzed_ports_lock);
WARN_ON_ONCE(!list_empty(&curr->bound_ports_list));
}
kfree(mlxsw_sp->span); kfree(mlxsw_sp->span);
} }
...@@ -751,26 +766,8 @@ static int mlxsw_sp_span_entry_put(struct mlxsw_sp *mlxsw_sp, ...@@ -751,26 +766,8 @@ static int mlxsw_sp_span_entry_put(struct mlxsw_sp *mlxsw_sp,
return 0; return 0;
} }
static bool mlxsw_sp_span_is_egress_mirror(struct mlxsw_sp_port *port)
{
struct mlxsw_sp *mlxsw_sp = port->mlxsw_sp;
struct mlxsw_sp_span_inspected_port *p;
int i;
for (i = 0; i < mlxsw_sp->span->entries_count; i++) {
struct mlxsw_sp_span_entry *curr = &mlxsw_sp->span->entries[i];
list_for_each_entry(p, &curr->bound_ports_list, list)
if (p->local_port == port->local_port &&
p->type == MLXSW_SP_SPAN_EGRESS)
return true;
}
return false;
}
static int static int
mlxsw_sp_span_port_buffsize_update(struct mlxsw_sp_port *mlxsw_sp_port, u16 mtu) mlxsw_sp_span_port_buffer_update(struct mlxsw_sp_port *mlxsw_sp_port, u16 mtu)
{ {
struct mlxsw_sp *mlxsw_sp = mlxsw_sp_port->mlxsw_sp; struct mlxsw_sp *mlxsw_sp = mlxsw_sp_port->mlxsw_sp;
char sbib_pl[MLXSW_REG_SBIB_LEN]; char sbib_pl[MLXSW_REG_SBIB_LEN];
...@@ -789,20 +786,54 @@ mlxsw_sp_span_port_buffsize_update(struct mlxsw_sp_port *mlxsw_sp_port, u16 mtu) ...@@ -789,20 +786,54 @@ mlxsw_sp_span_port_buffsize_update(struct mlxsw_sp_port *mlxsw_sp_port, u16 mtu)
return mlxsw_reg_write(mlxsw_sp->core, MLXSW_REG(sbib), sbib_pl); return mlxsw_reg_write(mlxsw_sp->core, MLXSW_REG(sbib), sbib_pl);
} }
static void mlxsw_sp_span_port_buffer_disable(struct mlxsw_sp *mlxsw_sp,
u8 local_port)
{
char sbib_pl[MLXSW_REG_SBIB_LEN];
mlxsw_reg_sbib_pack(sbib_pl, local_port, 0);
mlxsw_reg_write(mlxsw_sp->core, MLXSW_REG(sbib), sbib_pl);
}
static struct mlxsw_sp_span_analyzed_port *
mlxsw_sp_span_analyzed_port_find(struct mlxsw_sp_span *span, u8 local_port,
bool ingress)
{
struct mlxsw_sp_span_analyzed_port *analyzed_port;
list_for_each_entry(analyzed_port, &span->analyzed_ports_list, list) {
if (analyzed_port->local_port == local_port &&
analyzed_port->ingress == ingress)
return analyzed_port;
}
return NULL;
}
int mlxsw_sp_span_port_mtu_update(struct mlxsw_sp_port *port, u16 mtu) int mlxsw_sp_span_port_mtu_update(struct mlxsw_sp_port *port, u16 mtu)
{ {
struct mlxsw_sp *mlxsw_sp = port->mlxsw_sp;
int err = 0;
/* If port is egress mirrored, the shared buffer size should be /* If port is egress mirrored, the shared buffer size should be
* updated according to the mtu value * updated according to the mtu value
*/ */
if (mlxsw_sp_span_is_egress_mirror(port)) mutex_lock(&mlxsw_sp->span->analyzed_ports_lock);
return mlxsw_sp_span_port_buffsize_update(port, mtu);
return 0; if (mlxsw_sp_span_analyzed_port_find(mlxsw_sp->span, port->local_port,
false))
err = mlxsw_sp_span_port_buffer_update(port, mtu);
mutex_unlock(&mlxsw_sp->span->analyzed_ports_lock);
return err;
} }
void mlxsw_sp_span_speed_update_work(struct work_struct *work) void mlxsw_sp_span_speed_update_work(struct work_struct *work)
{ {
struct delayed_work *dwork = to_delayed_work(work); struct delayed_work *dwork = to_delayed_work(work);
struct mlxsw_sp_port *mlxsw_sp_port; struct mlxsw_sp_port *mlxsw_sp_port;
struct mlxsw_sp *mlxsw_sp;
mlxsw_sp_port = container_of(dwork, struct mlxsw_sp_port, mlxsw_sp_port = container_of(dwork, struct mlxsw_sp_port,
span.speed_update_dw); span.speed_update_dw);
...@@ -810,232 +841,368 @@ void mlxsw_sp_span_speed_update_work(struct work_struct *work) ...@@ -810,232 +841,368 @@ void mlxsw_sp_span_speed_update_work(struct work_struct *work)
/* If port is egress mirrored, the shared buffer size should be /* If port is egress mirrored, the shared buffer size should be
* updated according to the speed value. * updated according to the speed value.
*/ */
if (mlxsw_sp_span_is_egress_mirror(mlxsw_sp_port)) mlxsw_sp = mlxsw_sp_port->mlxsw_sp;
mlxsw_sp_span_port_buffsize_update(mlxsw_sp_port, mutex_lock(&mlxsw_sp->span->analyzed_ports_lock);
if (mlxsw_sp_span_analyzed_port_find(mlxsw_sp->span,
mlxsw_sp_port->local_port, false))
mlxsw_sp_span_port_buffer_update(mlxsw_sp_port,
mlxsw_sp_port->dev->mtu); mlxsw_sp_port->dev->mtu);
mutex_unlock(&mlxsw_sp->span->analyzed_ports_lock);
} }
static struct mlxsw_sp_span_inspected_port * static const struct mlxsw_sp_span_entry_ops *
mlxsw_sp_span_entry_bound_port_find(struct mlxsw_sp_span_entry *span_entry, mlxsw_sp_span_entry_ops(struct mlxsw_sp *mlxsw_sp,
enum mlxsw_sp_span_type type, const struct net_device *to_dev)
struct mlxsw_sp_port *port,
bool bind)
{ {
struct mlxsw_sp_span_inspected_port *p; size_t i;
for (i = 0; i < ARRAY_SIZE(mlxsw_sp_span_entry_types); ++i)
if (mlxsw_sp_span_entry_types[i]->can_handle(to_dev))
return mlxsw_sp_span_entry_types[i];
list_for_each_entry(p, &span_entry->bound_ports_list, list)
if (type == p->type &&
port->local_port == p->local_port &&
bind == p->bound)
return p;
return NULL; return NULL;
} }
static int static void mlxsw_sp_span_respin_work(struct work_struct *work)
mlxsw_sp_span_inspected_port_bind(struct mlxsw_sp_port *port,
struct mlxsw_sp_span_entry *span_entry,
enum mlxsw_sp_span_type type,
bool bind)
{ {
struct mlxsw_sp *mlxsw_sp = port->mlxsw_sp; struct mlxsw_sp_span *span;
char mpar_pl[MLXSW_REG_MPAR_LEN]; struct mlxsw_sp *mlxsw_sp;
int pa_id = span_entry->id; int i, err;
span = container_of(work, struct mlxsw_sp_span, work);
mlxsw_sp = span->mlxsw_sp;
rtnl_lock();
for (i = 0; i < mlxsw_sp->span->entries_count; i++) {
struct mlxsw_sp_span_entry *curr = &mlxsw_sp->span->entries[i];
struct mlxsw_sp_span_parms sparms = {NULL};
/* bind the port to the SPAN entry */ if (!refcount_read(&curr->ref_count))
mlxsw_reg_mpar_pack(mpar_pl, port->local_port, continue;
(enum mlxsw_reg_mpar_i_e)type, bind, pa_id);
return mlxsw_reg_write(mlxsw_sp->core, MLXSW_REG(mpar), mpar_pl); err = curr->ops->parms_set(curr->to_dev, &sparms);
if (err)
continue;
if (memcmp(&sparms, &curr->parms, sizeof(sparms))) {
mlxsw_sp_span_entry_deconfigure(curr);
mlxsw_sp_span_entry_configure(mlxsw_sp, curr, sparms);
}
}
rtnl_unlock();
} }
static int void mlxsw_sp_span_respin(struct mlxsw_sp *mlxsw_sp)
mlxsw_sp_span_inspected_port_add(struct mlxsw_sp_port *port,
struct mlxsw_sp_span_entry *span_entry,
enum mlxsw_sp_span_type type,
bool bind)
{ {
struct mlxsw_sp_span_inspected_port *inspected_port; if (atomic_read(&mlxsw_sp->span->active_entries_count) == 0)
struct mlxsw_sp *mlxsw_sp = port->mlxsw_sp; return;
char sbib_pl[MLXSW_REG_SBIB_LEN]; mlxsw_core_schedule_work(&mlxsw_sp->span->work);
int i; }
int mlxsw_sp_span_agent_get(struct mlxsw_sp *mlxsw_sp,
const struct net_device *to_dev, int *p_span_id)
{
const struct mlxsw_sp_span_entry_ops *ops;
struct mlxsw_sp_span_entry *span_entry;
struct mlxsw_sp_span_parms sparms;
int err; int err;
/* A given (source port, direction) can only be bound to one analyzer, ASSERT_RTNL();
* so if a binding is requested, check for conflicts.
*/
if (bind)
for (i = 0; i < mlxsw_sp->span->entries_count; i++) {
struct mlxsw_sp_span_entry *curr =
&mlxsw_sp->span->entries[i];
if (mlxsw_sp_span_entry_bound_port_find(curr, type, ops = mlxsw_sp_span_entry_ops(mlxsw_sp, to_dev);
port, bind)) if (!ops) {
return -EEXIST; dev_err(mlxsw_sp->bus_info->dev, "Cannot mirror to requested destination\n");
return -EOPNOTSUPP;
} }
/* if it is an egress SPAN, bind a shared buffer to it */ memset(&sparms, 0, sizeof(sparms));
if (type == MLXSW_SP_SPAN_EGRESS) { err = ops->parms_set(to_dev, &sparms);
err = mlxsw_sp_span_port_buffsize_update(port, port->dev->mtu);
if (err) if (err)
return err; return err;
}
if (bind) { span_entry = mlxsw_sp_span_entry_get(mlxsw_sp, to_dev, ops, sparms);
err = mlxsw_sp_span_inspected_port_bind(port, span_entry, type, if (!span_entry)
true); return -ENOBUFS;
if (err)
goto err_port_bind;
}
inspected_port = kzalloc(sizeof(*inspected_port), GFP_KERNEL); *p_span_id = span_entry->id;
if (!inspected_port) {
err = -ENOMEM;
goto err_inspected_port_alloc;
}
inspected_port->local_port = port->local_port;
inspected_port->type = type;
inspected_port->bound = bind;
list_add_tail(&inspected_port->list, &span_entry->bound_ports_list);
return 0; return 0;
err_inspected_port_alloc:
if (bind)
mlxsw_sp_span_inspected_port_bind(port, span_entry, type,
false);
err_port_bind:
if (type == MLXSW_SP_SPAN_EGRESS) {
mlxsw_reg_sbib_pack(sbib_pl, port->local_port, 0);
mlxsw_reg_write(mlxsw_sp->core, MLXSW_REG(sbib), sbib_pl);
}
return err;
} }
static void void mlxsw_sp_span_agent_put(struct mlxsw_sp *mlxsw_sp, int span_id)
mlxsw_sp_span_inspected_port_del(struct mlxsw_sp_port *port,
struct mlxsw_sp_span_entry *span_entry,
enum mlxsw_sp_span_type type,
bool bind)
{ {
struct mlxsw_sp_span_inspected_port *inspected_port; struct mlxsw_sp_span_entry *span_entry;
struct mlxsw_sp *mlxsw_sp = port->mlxsw_sp;
char sbib_pl[MLXSW_REG_SBIB_LEN]; ASSERT_RTNL();
inspected_port = mlxsw_sp_span_entry_bound_port_find(span_entry, type, span_entry = mlxsw_sp_span_entry_find_by_id(mlxsw_sp, span_id);
port, bind); if (WARN_ON_ONCE(!span_entry))
if (!inspected_port)
return; return;
if (bind) mlxsw_sp_span_entry_put(mlxsw_sp, span_entry);
mlxsw_sp_span_inspected_port_bind(port, span_entry, type, }
false);
/* remove the SBIB buffer if it was egress SPAN */ static struct mlxsw_sp_span_analyzed_port *
if (type == MLXSW_SP_SPAN_EGRESS) { mlxsw_sp_span_analyzed_port_create(struct mlxsw_sp_span *span,
mlxsw_reg_sbib_pack(sbib_pl, port->local_port, 0); struct mlxsw_sp_port *mlxsw_sp_port,
mlxsw_reg_write(mlxsw_sp->core, MLXSW_REG(sbib), sbib_pl); bool ingress)
{
struct mlxsw_sp_span_analyzed_port *analyzed_port;
int err;
analyzed_port = kzalloc(sizeof(*analyzed_port), GFP_KERNEL);
if (!analyzed_port)
return ERR_PTR(-ENOMEM);
refcount_set(&analyzed_port->ref_count, 1);
analyzed_port->local_port = mlxsw_sp_port->local_port;
analyzed_port->ingress = ingress;
list_add_tail(&analyzed_port->list, &span->analyzed_ports_list);
/* An egress mirror buffer should be allocated on the egress port which
* does the mirroring.
*/
if (!ingress) {
u16 mtu = mlxsw_sp_port->dev->mtu;
err = mlxsw_sp_span_port_buffer_update(mlxsw_sp_port, mtu);
if (err)
goto err_buffer_update;
} }
mlxsw_sp_span_entry_put(mlxsw_sp, span_entry); return analyzed_port;
list_del(&inspected_port->list); err_buffer_update:
kfree(inspected_port); list_del(&analyzed_port->list);
kfree(analyzed_port);
return ERR_PTR(err);
} }
static const struct mlxsw_sp_span_entry_ops * static void
mlxsw_sp_span_entry_ops(struct mlxsw_sp *mlxsw_sp, mlxsw_sp_span_analyzed_port_destroy(struct mlxsw_sp_span *span,
const struct net_device *to_dev) struct mlxsw_sp_span_analyzed_port *
analyzed_port)
{ {
size_t i; struct mlxsw_sp *mlxsw_sp = span->mlxsw_sp;
for (i = 0; i < ARRAY_SIZE(mlxsw_sp_span_entry_types); ++i) /* Remove egress mirror buffer now that port is no longer analyzed
if (mlxsw_sp_span_entry_types[i]->can_handle(to_dev)) * at egress.
return mlxsw_sp_span_entry_types[i]; */
if (!analyzed_port->ingress)
mlxsw_sp_span_port_buffer_disable(mlxsw_sp,
analyzed_port->local_port);
return NULL; list_del(&analyzed_port->list);
kfree(analyzed_port);
} }
int mlxsw_sp_span_mirror_add(struct mlxsw_sp_port *from, int mlxsw_sp_span_analyzed_port_get(struct mlxsw_sp_port *mlxsw_sp_port,
const struct net_device *to_dev, bool ingress)
enum mlxsw_sp_span_type type, bool bind,
int *p_span_id)
{ {
struct mlxsw_sp *mlxsw_sp = from->mlxsw_sp; struct mlxsw_sp *mlxsw_sp = mlxsw_sp_port->mlxsw_sp;
const struct mlxsw_sp_span_entry_ops *ops; struct mlxsw_sp_span_analyzed_port *analyzed_port;
struct mlxsw_sp_span_parms sparms = {NULL}; u8 local_port = mlxsw_sp_port->local_port;
struct mlxsw_sp_span_entry *span_entry; int err = 0;
int err;
ops = mlxsw_sp_span_entry_ops(mlxsw_sp, to_dev); mutex_lock(&mlxsw_sp->span->analyzed_ports_lock);
if (!ops) {
netdev_err(to_dev, "Cannot mirror to %s", to_dev->name); analyzed_port = mlxsw_sp_span_analyzed_port_find(mlxsw_sp->span,
return -EOPNOTSUPP; local_port, ingress);
if (analyzed_port) {
refcount_inc(&analyzed_port->ref_count);
goto out_unlock;
} }
err = ops->parms_set(to_dev, &sparms); analyzed_port = mlxsw_sp_span_analyzed_port_create(mlxsw_sp->span,
if (err) mlxsw_sp_port,
ingress);
if (IS_ERR(analyzed_port))
err = PTR_ERR(analyzed_port);
out_unlock:
mutex_unlock(&mlxsw_sp->span->analyzed_ports_lock);
return err; return err;
}
span_entry = mlxsw_sp_span_entry_get(mlxsw_sp, to_dev, ops, sparms); void mlxsw_sp_span_analyzed_port_put(struct mlxsw_sp_port *mlxsw_sp_port,
if (!span_entry) bool ingress)
return -ENOBUFS; {
struct mlxsw_sp *mlxsw_sp = mlxsw_sp_port->mlxsw_sp;
struct mlxsw_sp_span_analyzed_port *analyzed_port;
u8 local_port = mlxsw_sp_port->local_port;
err = mlxsw_sp_span_inspected_port_add(from, span_entry, type, bind); mutex_lock(&mlxsw_sp->span->analyzed_ports_lock);
if (err)
goto err_port_bind;
*p_span_id = span_entry->id; analyzed_port = mlxsw_sp_span_analyzed_port_find(mlxsw_sp->span,
return 0; local_port, ingress);
if (WARN_ON_ONCE(!analyzed_port))
goto out_unlock;
err_port_bind: if (!refcount_dec_and_test(&analyzed_port->ref_count))
mlxsw_sp_span_entry_put(mlxsw_sp, span_entry); goto out_unlock;
return err;
mlxsw_sp_span_analyzed_port_destroy(mlxsw_sp->span, analyzed_port);
out_unlock:
mutex_unlock(&mlxsw_sp->span->analyzed_ports_lock);
} }
void mlxsw_sp_span_mirror_del(struct mlxsw_sp_port *from, int span_id, static int
enum mlxsw_sp_span_type type, bool bind) __mlxsw_sp_span_trigger_entry_bind(struct mlxsw_sp_span *span,
struct mlxsw_sp_span_trigger_entry *
trigger_entry, bool enable)
{ {
struct mlxsw_sp_span_entry *span_entry; char mpar_pl[MLXSW_REG_MPAR_LEN];
enum mlxsw_reg_mpar_i_e i_e;
span_entry = mlxsw_sp_span_entry_find_by_id(from->mlxsw_sp, span_id); switch (trigger_entry->trigger) {
if (!span_entry) { case MLXSW_SP_SPAN_TRIGGER_INGRESS:
netdev_err(from->dev, "no span entry found\n"); i_e = MLXSW_REG_MPAR_TYPE_INGRESS;
return; break;
case MLXSW_SP_SPAN_TRIGGER_EGRESS:
i_e = MLXSW_REG_MPAR_TYPE_EGRESS;
break;
default:
WARN_ON_ONCE(1);
return -EINVAL;
} }
mlxsw_sp_span_inspected_port_del(from, span_entry, type, bind); mlxsw_reg_mpar_pack(mpar_pl, trigger_entry->local_port, i_e, enable,
trigger_entry->parms.span_id);
return mlxsw_reg_write(span->mlxsw_sp->core, MLXSW_REG(mpar), mpar_pl);
} }
static void mlxsw_sp_span_respin_work(struct work_struct *work) static int
mlxsw_sp_span_trigger_entry_bind(struct mlxsw_sp_span *span,
struct mlxsw_sp_span_trigger_entry *
trigger_entry)
{ {
struct mlxsw_sp_span *span; return __mlxsw_sp_span_trigger_entry_bind(span, trigger_entry, true);
struct mlxsw_sp *mlxsw_sp; }
int i, err;
span = container_of(work, struct mlxsw_sp_span, work); static void
mlxsw_sp = span->mlxsw_sp; mlxsw_sp_span_trigger_entry_unbind(struct mlxsw_sp_span *span,
struct mlxsw_sp_span_trigger_entry *
trigger_entry)
{
__mlxsw_sp_span_trigger_entry_bind(span, trigger_entry, false);
}
rtnl_lock(); static struct mlxsw_sp_span_trigger_entry *
for (i = 0; i < mlxsw_sp->span->entries_count; i++) { mlxsw_sp_span_trigger_entry_create(struct mlxsw_sp_span *span,
struct mlxsw_sp_span_entry *curr = &mlxsw_sp->span->entries[i]; enum mlxsw_sp_span_trigger trigger,
struct mlxsw_sp_span_parms sparms = {NULL}; struct mlxsw_sp_port *mlxsw_sp_port,
const struct mlxsw_sp_span_trigger_parms
*parms)
{
struct mlxsw_sp_span_trigger_entry *trigger_entry;
int err;
if (!refcount_read(&curr->ref_count)) trigger_entry = kzalloc(sizeof(*trigger_entry), GFP_KERNEL);
continue; if (!trigger_entry)
return ERR_PTR(-ENOMEM);
err = curr->ops->parms_set(curr->to_dev, &sparms); refcount_set(&trigger_entry->ref_count, 1);
trigger_entry->local_port = mlxsw_sp_port->local_port;
trigger_entry->trigger = trigger;
memcpy(&trigger_entry->parms, parms, sizeof(trigger_entry->parms));
list_add_tail(&trigger_entry->list, &span->trigger_entries_list);
err = mlxsw_sp_span_trigger_entry_bind(span, trigger_entry);
if (err) if (err)
continue; goto err_trigger_entry_bind;
if (memcmp(&sparms, &curr->parms, sizeof(sparms))) { return trigger_entry;
mlxsw_sp_span_entry_deconfigure(curr);
mlxsw_sp_span_entry_configure(mlxsw_sp, curr, sparms); err_trigger_entry_bind:
list_del(&trigger_entry->list);
kfree(trigger_entry);
return ERR_PTR(err);
}
static void
mlxsw_sp_span_trigger_entry_destroy(struct mlxsw_sp_span *span,
struct mlxsw_sp_span_trigger_entry *
trigger_entry)
{
mlxsw_sp_span_trigger_entry_unbind(span, trigger_entry);
list_del(&trigger_entry->list);
kfree(trigger_entry);
}
static struct mlxsw_sp_span_trigger_entry *
mlxsw_sp_span_trigger_entry_find(struct mlxsw_sp_span *span,
enum mlxsw_sp_span_trigger trigger,
struct mlxsw_sp_port *mlxsw_sp_port)
{
struct mlxsw_sp_span_trigger_entry *trigger_entry;
list_for_each_entry(trigger_entry, &span->trigger_entries_list, list) {
if (trigger_entry->trigger == trigger &&
trigger_entry->local_port == mlxsw_sp_port->local_port)
return trigger_entry;
} }
return NULL;
}
int mlxsw_sp_span_agent_bind(struct mlxsw_sp *mlxsw_sp,
enum mlxsw_sp_span_trigger trigger,
struct mlxsw_sp_port *mlxsw_sp_port,
const struct mlxsw_sp_span_trigger_parms *parms)
{
struct mlxsw_sp_span_trigger_entry *trigger_entry;
int err = 0;
ASSERT_RTNL();
if (!mlxsw_sp_span_entry_find_by_id(mlxsw_sp, parms->span_id))
return -EINVAL;
trigger_entry = mlxsw_sp_span_trigger_entry_find(mlxsw_sp->span,
trigger,
mlxsw_sp_port);
if (trigger_entry) {
if (trigger_entry->parms.span_id != parms->span_id)
return -EINVAL;
refcount_inc(&trigger_entry->ref_count);
goto out;
} }
rtnl_unlock();
trigger_entry = mlxsw_sp_span_trigger_entry_create(mlxsw_sp->span,
trigger,
mlxsw_sp_port,
parms);
if (IS_ERR(trigger_entry))
err = PTR_ERR(trigger_entry);
out:
return err;
} }
void mlxsw_sp_span_respin(struct mlxsw_sp *mlxsw_sp) void mlxsw_sp_span_agent_unbind(struct mlxsw_sp *mlxsw_sp,
enum mlxsw_sp_span_trigger trigger,
struct mlxsw_sp_port *mlxsw_sp_port,
const struct mlxsw_sp_span_trigger_parms *parms)
{ {
if (atomic_read(&mlxsw_sp->span->active_entries_count) == 0) struct mlxsw_sp_span_trigger_entry *trigger_entry;
ASSERT_RTNL();
if (WARN_ON_ONCE(!mlxsw_sp_span_entry_find_by_id(mlxsw_sp,
parms->span_id)))
return; return;
mlxsw_core_schedule_work(&mlxsw_sp->span->work);
trigger_entry = mlxsw_sp_span_trigger_entry_find(mlxsw_sp->span,
trigger,
mlxsw_sp_port);
if (WARN_ON_ONCE(!trigger_entry))
return;
if (!refcount_dec_and_test(&trigger_entry->ref_count))
return;
mlxsw_sp_span_trigger_entry_destroy(mlxsw_sp->span, trigger_entry);
} }
...@@ -13,20 +13,6 @@ ...@@ -13,20 +13,6 @@
struct mlxsw_sp; struct mlxsw_sp;
struct mlxsw_sp_port; struct mlxsw_sp_port;
enum mlxsw_sp_span_type {
MLXSW_SP_SPAN_EGRESS,
MLXSW_SP_SPAN_INGRESS
};
struct mlxsw_sp_span_inspected_port {
struct list_head list;
enum mlxsw_sp_span_type type;
u8 local_port;
/* Whether this is a directly bound mirror (port-to-port) or an ACL. */
bool bound;
};
struct mlxsw_sp_span_parms { struct mlxsw_sp_span_parms {
struct mlxsw_sp_port *dest_port; /* NULL for unoffloaded SPAN. */ struct mlxsw_sp_port *dest_port; /* NULL for unoffloaded SPAN. */
unsigned int ttl; unsigned int ttl;
...@@ -37,13 +23,21 @@ struct mlxsw_sp_span_parms { ...@@ -37,13 +23,21 @@ struct mlxsw_sp_span_parms {
u16 vid; u16 vid;
}; };
enum mlxsw_sp_span_trigger {
MLXSW_SP_SPAN_TRIGGER_INGRESS,
MLXSW_SP_SPAN_TRIGGER_EGRESS,
};
struct mlxsw_sp_span_trigger_parms {
int span_id;
};
struct mlxsw_sp_span_entry_ops; struct mlxsw_sp_span_entry_ops;
struct mlxsw_sp_span_entry { struct mlxsw_sp_span_entry {
const struct net_device *to_dev; const struct net_device *to_dev;
const struct mlxsw_sp_span_entry_ops *ops; const struct mlxsw_sp_span_entry_ops *ops;
struct mlxsw_sp_span_parms parms; struct mlxsw_sp_span_parms parms;
struct list_head bound_ports_list;
refcount_t ref_count; refcount_t ref_count;
int id; int id;
}; };
...@@ -61,12 +55,6 @@ int mlxsw_sp_span_init(struct mlxsw_sp *mlxsw_sp); ...@@ -61,12 +55,6 @@ int mlxsw_sp_span_init(struct mlxsw_sp *mlxsw_sp);
void mlxsw_sp_span_fini(struct mlxsw_sp *mlxsw_sp); void mlxsw_sp_span_fini(struct mlxsw_sp *mlxsw_sp);
void mlxsw_sp_span_respin(struct mlxsw_sp *mlxsw_sp); void mlxsw_sp_span_respin(struct mlxsw_sp *mlxsw_sp);
int mlxsw_sp_span_mirror_add(struct mlxsw_sp_port *from,
const struct net_device *to_dev,
enum mlxsw_sp_span_type type,
bool bind, int *p_span_id);
void mlxsw_sp_span_mirror_del(struct mlxsw_sp_port *from, int span_id,
enum mlxsw_sp_span_type type, bool bind);
struct mlxsw_sp_span_entry * struct mlxsw_sp_span_entry *
mlxsw_sp_span_entry_find_by_port(struct mlxsw_sp *mlxsw_sp, mlxsw_sp_span_entry_find_by_port(struct mlxsw_sp *mlxsw_sp,
const struct net_device *to_dev); const struct net_device *to_dev);
...@@ -77,4 +65,21 @@ void mlxsw_sp_span_entry_invalidate(struct mlxsw_sp *mlxsw_sp, ...@@ -77,4 +65,21 @@ void mlxsw_sp_span_entry_invalidate(struct mlxsw_sp *mlxsw_sp,
int mlxsw_sp_span_port_mtu_update(struct mlxsw_sp_port *port, u16 mtu); int mlxsw_sp_span_port_mtu_update(struct mlxsw_sp_port *port, u16 mtu);
void mlxsw_sp_span_speed_update_work(struct work_struct *work); void mlxsw_sp_span_speed_update_work(struct work_struct *work);
int mlxsw_sp_span_agent_get(struct mlxsw_sp *mlxsw_sp,
const struct net_device *to_dev, int *p_span_id);
void mlxsw_sp_span_agent_put(struct mlxsw_sp *mlxsw_sp, int span_id);
int mlxsw_sp_span_analyzed_port_get(struct mlxsw_sp_port *mlxsw_sp_port,
bool ingress);
void mlxsw_sp_span_analyzed_port_put(struct mlxsw_sp_port *mlxsw_sp_port,
bool ingress);
int mlxsw_sp_span_agent_bind(struct mlxsw_sp *mlxsw_sp,
enum mlxsw_sp_span_trigger trigger,
struct mlxsw_sp_port *mlxsw_sp_port,
const struct mlxsw_sp_span_trigger_parms *parms);
void
mlxsw_sp_span_agent_unbind(struct mlxsw_sp *mlxsw_sp,
enum mlxsw_sp_span_trigger trigger,
struct mlxsw_sp_port *mlxsw_sp_port,
const struct mlxsw_sp_span_trigger_parms *parms);
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment