2019-05-27 06:55:01 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2016-09-08 13:23:48 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2016, Amir Vadai <amir@vadai.me>
|
|
|
|
* Copyright (c) 2016, Mellanox Technologies. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __NET_TC_TUNNEL_KEY_H
|
|
|
|
#define __NET_TC_TUNNEL_KEY_H
|
|
|
|
|
|
|
|
#include <net/act_api.h>
|
2016-11-07 13:14:36 +00:00
|
|
|
#include <linux/tc_act/tc_tunnel_key.h>
|
|
|
|
#include <net/dst_metadata.h>
|
2016-09-08 13:23:48 +00:00
|
|
|
|
|
|
|
struct tcf_tunnel_key_params {
|
|
|
|
struct rcu_head rcu;
|
|
|
|
int tcft_action;
|
|
|
|
struct metadata_dst *tcft_enc_metadata;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct tcf_tunnel_key {
|
|
|
|
struct tc_action common;
|
|
|
|
struct tcf_tunnel_key_params __rcu *params;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define to_tunnel_key(a) ((struct tcf_tunnel_key *)a)
|
|
|
|
|
2016-11-07 13:14:36 +00:00
|
|
|
static inline bool is_tcf_tunnel_set(const struct tc_action *a)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_NET_CLS_ACT
|
|
|
|
struct tcf_tunnel_key *t = to_tunnel_key(a);
|
2020-03-19 11:33:10 +00:00
|
|
|
struct tcf_tunnel_key_params *params;
|
2016-11-07 13:14:36 +00:00
|
|
|
|
2020-03-19 11:33:10 +00:00
|
|
|
params = rcu_dereference_protected(t->params,
|
|
|
|
lockdep_is_held(&a->tcfa_lock));
|
2019-02-10 12:25:00 +00:00
|
|
|
if (a->ops && a->ops->id == TCA_ID_TUNNEL_KEY)
|
2016-11-07 13:14:36 +00:00
|
|
|
return params->tcft_action == TCA_TUNNEL_KEY_ACT_SET;
|
|
|
|
#endif
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool is_tcf_tunnel_release(const struct tc_action *a)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_NET_CLS_ACT
|
|
|
|
struct tcf_tunnel_key *t = to_tunnel_key(a);
|
2020-03-19 11:33:10 +00:00
|
|
|
struct tcf_tunnel_key_params *params;
|
2016-11-07 13:14:36 +00:00
|
|
|
|
2020-03-19 11:33:10 +00:00
|
|
|
params = rcu_dereference_protected(t->params,
|
|
|
|
lockdep_is_held(&a->tcfa_lock));
|
2019-02-10 12:25:00 +00:00
|
|
|
if (a->ops && a->ops->id == TCA_ID_TUNNEL_KEY)
|
2016-11-07 13:14:36 +00:00
|
|
|
return params->tcft_action == TCA_TUNNEL_KEY_ACT_RELEASE;
|
|
|
|
#endif
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct ip_tunnel_info *tcf_tunnel_info(const struct tc_action *a)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_NET_CLS_ACT
|
|
|
|
struct tcf_tunnel_key *t = to_tunnel_key(a);
|
2020-10-14 08:56:42 +00:00
|
|
|
struct tcf_tunnel_key_params *params;
|
|
|
|
|
|
|
|
params = rcu_dereference_protected(t->params,
|
|
|
|
lockdep_is_held(&a->tcfa_lock));
|
2016-11-07 13:14:36 +00:00
|
|
|
|
|
|
|
return ¶ms->tcft_enc_metadata->u.tun_info;
|
|
|
|
#else
|
|
|
|
return NULL;
|
|
|
|
#endif
|
|
|
|
}
|
2019-08-26 13:45:05 +00:00
|
|
|
|
|
|
|
static inline struct ip_tunnel_info *
|
|
|
|
tcf_tunnel_info_copy(const struct tc_action *a)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_NET_CLS_ACT
|
|
|
|
struct ip_tunnel_info *tun = tcf_tunnel_info(a);
|
|
|
|
|
|
|
|
if (tun) {
|
|
|
|
size_t tun_size = sizeof(*tun) + tun->options_len;
|
|
|
|
struct ip_tunnel_info *tun_copy = kmemdup(tun, tun_size,
|
2020-02-17 10:12:09 +00:00
|
|
|
GFP_ATOMIC);
|
2019-08-26 13:45:05 +00:00
|
|
|
|
|
|
|
return tun_copy;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return NULL;
|
|
|
|
}
|
2016-09-08 13:23:48 +00:00
|
|
|
#endif /* __NET_TC_TUNNEL_KEY_H */
|