Commit 4562116f authored by Leon Romanovsky's avatar Leon Romanovsky Committed by Leon Romanovsky

net/mlx5e: Generalize IPsec work structs

IPsec logic has two work structs which are submitted to same workqueue.
As a preparation to addition of new work which needs to be submitted
too, let's generalize struct mlx5e_ipsec_work.

Link: https://lore.kernel.org/r/285a1550242363de181bab3a07a69296f66ad9a8.1680162300.git.leonro@nvidia.comReviewed-by: default avatarRaed Salem <raeds@nvidia.com>
Signed-off-by: default avatarLeon Romanovsky <leonro@nvidia.com>
parent 20fbdab2
...@@ -406,14 +406,16 @@ static int mlx5e_xfrm_validate_state(struct mlx5_core_dev *mdev, ...@@ -406,14 +406,16 @@ static int mlx5e_xfrm_validate_state(struct mlx5_core_dev *mdev,
return 0; return 0;
} }
static void _update_xfrm_state(struct work_struct *work) static void mlx5e_ipsec_modify_state(struct work_struct *_work)
{ {
struct mlx5e_ipsec_modify_state_work *modify_work = struct mlx5e_ipsec_work *work =
container_of(work, struct mlx5e_ipsec_modify_state_work, work); container_of(_work, struct mlx5e_ipsec_work, work);
struct mlx5e_ipsec_sa_entry *sa_entry = container_of( struct mlx5e_ipsec_sa_entry *sa_entry = work->sa_entry;
modify_work, struct mlx5e_ipsec_sa_entry, modify_work); struct mlx5_accel_esp_xfrm_attrs *attrs;
mlx5_accel_esp_modify_xfrm(sa_entry, &modify_work->attrs); attrs = &((struct mlx5e_ipsec_sa_entry *)work->data)->attrs;
mlx5_accel_esp_modify_xfrm(sa_entry, attrs);
} }
static void mlx5e_ipsec_set_esn_ops(struct mlx5e_ipsec_sa_entry *sa_entry) static void mlx5e_ipsec_set_esn_ops(struct mlx5e_ipsec_sa_entry *sa_entry)
...@@ -432,6 +434,36 @@ static void mlx5e_ipsec_set_esn_ops(struct mlx5e_ipsec_sa_entry *sa_entry) ...@@ -432,6 +434,36 @@ static void mlx5e_ipsec_set_esn_ops(struct mlx5e_ipsec_sa_entry *sa_entry)
sa_entry->set_iv_op = mlx5e_ipsec_set_iv; sa_entry->set_iv_op = mlx5e_ipsec_set_iv;
} }
static int mlx5_ipsec_create_work(struct mlx5e_ipsec_sa_entry *sa_entry)
{
struct xfrm_state *x = sa_entry->x;
struct mlx5e_ipsec_work *work;
switch (x->xso.type) {
case XFRM_DEV_OFFLOAD_CRYPTO:
if (!(x->props.flags & XFRM_STATE_ESN))
return 0;
break;
default:
return 0;
}
work = kzalloc(sizeof(*work), GFP_KERNEL);
if (!work)
return -ENOMEM;
work->data = kzalloc(sizeof(*sa_entry), GFP_KERNEL);
if (!work->data) {
kfree(work);
return -ENOMEM;
}
INIT_WORK(&work->work, mlx5e_ipsec_modify_state);
work->sa_entry = sa_entry;
sa_entry->work = work;
return 0;
}
static int mlx5e_xfrm_add_state(struct xfrm_state *x, static int mlx5e_xfrm_add_state(struct xfrm_state *x,
struct netlink_ext_ack *extack) struct netlink_ext_ack *extack)
{ {
...@@ -467,10 +499,15 @@ static int mlx5e_xfrm_add_state(struct xfrm_state *x, ...@@ -467,10 +499,15 @@ static int mlx5e_xfrm_add_state(struct xfrm_state *x,
mlx5e_ipsec_update_esn_state(sa_entry); mlx5e_ipsec_update_esn_state(sa_entry);
mlx5e_ipsec_build_accel_xfrm_attrs(sa_entry, &sa_entry->attrs); mlx5e_ipsec_build_accel_xfrm_attrs(sa_entry, &sa_entry->attrs);
err = mlx5_ipsec_create_work(sa_entry);
if (err)
goto err_xfrm;
/* create hw context */ /* create hw context */
err = mlx5_ipsec_create_sa_ctx(sa_entry); err = mlx5_ipsec_create_sa_ctx(sa_entry);
if (err) if (err)
goto err_xfrm; goto release_work;
err = mlx5e_accel_ipsec_fs_add_rule(sa_entry); err = mlx5e_accel_ipsec_fs_add_rule(sa_entry);
if (err) if (err)
...@@ -486,16 +523,6 @@ static int mlx5e_xfrm_add_state(struct xfrm_state *x, ...@@ -486,16 +523,6 @@ static int mlx5e_xfrm_add_state(struct xfrm_state *x,
goto err_add_rule; goto err_add_rule;
mlx5e_ipsec_set_esn_ops(sa_entry); mlx5e_ipsec_set_esn_ops(sa_entry);
switch (x->xso.type) {
case XFRM_DEV_OFFLOAD_CRYPTO:
if (x->props.flags & XFRM_STATE_ESN)
INIT_WORK(&sa_entry->modify_work.work,
_update_xfrm_state);
break;
default:
break;
}
out: out:
x->xso.offload_handle = (unsigned long)sa_entry; x->xso.offload_handle = (unsigned long)sa_entry;
return 0; return 0;
...@@ -504,6 +531,9 @@ static int mlx5e_xfrm_add_state(struct xfrm_state *x, ...@@ -504,6 +531,9 @@ static int mlx5e_xfrm_add_state(struct xfrm_state *x,
mlx5e_accel_ipsec_fs_del_rule(sa_entry); mlx5e_accel_ipsec_fs_del_rule(sa_entry);
err_hw_ctx: err_hw_ctx:
mlx5_ipsec_free_sa_ctx(sa_entry); mlx5_ipsec_free_sa_ctx(sa_entry);
release_work:
kfree(sa_entry->work->data);
kfree(sa_entry->work);
err_xfrm: err_xfrm:
kfree(sa_entry); kfree(sa_entry);
NL_SET_ERR_MSG_MOD(extack, "Device failed to offload this policy"); NL_SET_ERR_MSG_MOD(extack, "Device failed to offload this policy");
...@@ -530,17 +560,13 @@ static void mlx5e_xfrm_free_state(struct xfrm_state *x) ...@@ -530,17 +560,13 @@ static void mlx5e_xfrm_free_state(struct xfrm_state *x)
if (x->xso.flags & XFRM_DEV_OFFLOAD_FLAG_ACQ) if (x->xso.flags & XFRM_DEV_OFFLOAD_FLAG_ACQ)
goto sa_entry_free; goto sa_entry_free;
switch (x->xso.type) { if (sa_entry->work)
case XFRM_DEV_OFFLOAD_CRYPTO: cancel_work_sync(&sa_entry->work->work);
if (x->props.flags & XFRM_STATE_ESN)
cancel_work_sync(&sa_entry->modify_work.work);
break;
default:
break;
}
mlx5e_accel_ipsec_fs_del_rule(sa_entry); mlx5e_accel_ipsec_fs_del_rule(sa_entry);
mlx5_ipsec_free_sa_ctx(sa_entry); mlx5_ipsec_free_sa_ctx(sa_entry);
kfree(sa_entry->work->data);
kfree(sa_entry->work);
sa_entry_free: sa_entry_free:
kfree(sa_entry); kfree(sa_entry);
} }
...@@ -626,16 +652,18 @@ static bool mlx5e_ipsec_offload_ok(struct sk_buff *skb, struct xfrm_state *x) ...@@ -626,16 +652,18 @@ static bool mlx5e_ipsec_offload_ok(struct sk_buff *skb, struct xfrm_state *x)
static void mlx5e_xfrm_advance_esn_state(struct xfrm_state *x) static void mlx5e_xfrm_advance_esn_state(struct xfrm_state *x)
{ {
struct mlx5e_ipsec_sa_entry *sa_entry = to_ipsec_sa_entry(x); struct mlx5e_ipsec_sa_entry *sa_entry = to_ipsec_sa_entry(x);
struct mlx5e_ipsec_modify_state_work *modify_work = struct mlx5e_ipsec_work *work = sa_entry->work;
&sa_entry->modify_work; struct mlx5e_ipsec_sa_entry *sa_entry_shadow;
bool need_update; bool need_update;
need_update = mlx5e_ipsec_update_esn_state(sa_entry); need_update = mlx5e_ipsec_update_esn_state(sa_entry);
if (!need_update) if (!need_update)
return; return;
mlx5e_ipsec_build_accel_xfrm_attrs(sa_entry, &modify_work->attrs); sa_entry_shadow = work->data;
queue_work(sa_entry->ipsec->wq, &modify_work->work); memset(sa_entry_shadow, 0x00, sizeof(*sa_entry_shadow));
mlx5e_ipsec_build_accel_xfrm_attrs(sa_entry, &sa_entry_shadow->attrs);
queue_work(sa_entry->ipsec->wq, &work->work);
} }
static void mlx5e_xfrm_update_curlft(struct xfrm_state *x) static void mlx5e_xfrm_update_curlft(struct xfrm_state *x)
......
...@@ -136,8 +136,8 @@ struct mlx5e_ipsec_tx; ...@@ -136,8 +136,8 @@ struct mlx5e_ipsec_tx;
struct mlx5e_ipsec_work { struct mlx5e_ipsec_work {
struct work_struct work; struct work_struct work;
struct mlx5e_ipsec *ipsec; struct mlx5e_ipsec_sa_entry *sa_entry;
u32 id; void *data;
}; };
struct mlx5e_ipsec_aso { struct mlx5e_ipsec_aso {
...@@ -176,11 +176,6 @@ struct mlx5e_ipsec_rule { ...@@ -176,11 +176,6 @@ struct mlx5e_ipsec_rule {
struct mlx5_fc *fc; struct mlx5_fc *fc;
}; };
struct mlx5e_ipsec_modify_state_work {
struct work_struct work;
struct mlx5_accel_esp_xfrm_attrs attrs;
};
struct mlx5e_ipsec_limits { struct mlx5e_ipsec_limits {
u64 round; u64 round;
u8 soft_limit_hit : 1; u8 soft_limit_hit : 1;
...@@ -197,7 +192,7 @@ struct mlx5e_ipsec_sa_entry { ...@@ -197,7 +192,7 @@ struct mlx5e_ipsec_sa_entry {
u32 ipsec_obj_id; u32 ipsec_obj_id;
u32 enc_key_id; u32 enc_key_id;
struct mlx5e_ipsec_rule ipsec_rule; struct mlx5e_ipsec_rule ipsec_rule;
struct mlx5e_ipsec_modify_state_work modify_work; struct mlx5e_ipsec_work *work;
struct mlx5e_ipsec_limits limits; struct mlx5e_ipsec_limits limits;
}; };
......
...@@ -417,18 +417,12 @@ static void mlx5e_ipsec_handle_event(struct work_struct *_work) ...@@ -417,18 +417,12 @@ static void mlx5e_ipsec_handle_event(struct work_struct *_work)
{ {
struct mlx5e_ipsec_work *work = struct mlx5e_ipsec_work *work =
container_of(_work, struct mlx5e_ipsec_work, work); container_of(_work, struct mlx5e_ipsec_work, work);
struct mlx5e_ipsec_sa_entry *sa_entry = work->data;
struct mlx5_accel_esp_xfrm_attrs *attrs; struct mlx5_accel_esp_xfrm_attrs *attrs;
struct mlx5e_ipsec_sa_entry *sa_entry;
struct mlx5e_ipsec_aso *aso; struct mlx5e_ipsec_aso *aso;
struct mlx5e_ipsec *ipsec;
int ret; int ret;
sa_entry = xa_load(&work->ipsec->sadb, work->id); aso = sa_entry->ipsec->aso;
if (!sa_entry)
goto out;
ipsec = sa_entry->ipsec;
aso = ipsec->aso;
attrs = &sa_entry->attrs; attrs = &sa_entry->attrs;
spin_lock(&sa_entry->x->lock); spin_lock(&sa_entry->x->lock);
...@@ -448,7 +442,6 @@ static void mlx5e_ipsec_handle_event(struct work_struct *_work) ...@@ -448,7 +442,6 @@ static void mlx5e_ipsec_handle_event(struct work_struct *_work)
unlock: unlock:
spin_unlock(&sa_entry->x->lock); spin_unlock(&sa_entry->x->lock);
out:
kfree(work); kfree(work);
} }
...@@ -456,6 +449,7 @@ static int mlx5e_ipsec_event(struct notifier_block *nb, unsigned long event, ...@@ -456,6 +449,7 @@ static int mlx5e_ipsec_event(struct notifier_block *nb, unsigned long event,
void *data) void *data)
{ {
struct mlx5e_ipsec *ipsec = container_of(nb, struct mlx5e_ipsec, nb); struct mlx5e_ipsec *ipsec = container_of(nb, struct mlx5e_ipsec, nb);
struct mlx5e_ipsec_sa_entry *sa_entry;
struct mlx5_eqe_obj_change *object; struct mlx5_eqe_obj_change *object;
struct mlx5e_ipsec_work *work; struct mlx5e_ipsec_work *work;
struct mlx5_eqe *eqe = data; struct mlx5_eqe *eqe = data;
...@@ -470,13 +464,16 @@ static int mlx5e_ipsec_event(struct notifier_block *nb, unsigned long event, ...@@ -470,13 +464,16 @@ static int mlx5e_ipsec_event(struct notifier_block *nb, unsigned long event,
if (type != MLX5_GENERAL_OBJECT_TYPES_IPSEC) if (type != MLX5_GENERAL_OBJECT_TYPES_IPSEC)
return NOTIFY_DONE; return NOTIFY_DONE;
sa_entry = xa_load(&ipsec->sadb, be32_to_cpu(object->obj_id));
if (!sa_entry)
return NOTIFY_DONE;
work = kmalloc(sizeof(*work), GFP_ATOMIC); work = kmalloc(sizeof(*work), GFP_ATOMIC);
if (!work) if (!work)
return NOTIFY_DONE; return NOTIFY_DONE;
INIT_WORK(&work->work, mlx5e_ipsec_handle_event); INIT_WORK(&work->work, mlx5e_ipsec_handle_event);
work->ipsec = ipsec; work->data = sa_entry;
work->id = be32_to_cpu(object->obj_id);
queue_work(ipsec->wq, &work->work); queue_work(ipsec->wq, &work->work);
return NOTIFY_OK; return NOTIFY_OK;
......
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