Commit ffa8ce54 authored by David Ahern's avatar David Ahern Committed by David S. Miller

lwtunnel: Pass encap and encap type attributes to lwtunnel_fill_encap

Currently, lwtunnel_fill_encap hardcodes the encap and encap type
attributes as RTA_ENCAP and RTA_ENCAP_TYPE, respectively. The nexthop
objects want to re-use this code but the encap attributes passed to
userspace as NHA_ENCAP and NHA_ENCAP_TYPE. Since that is the only
difference, change lwtunnel_fill_encap to take the attribute type as
an input.
Signed-off-by: default avatarDavid Ahern <dsahern@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0a5d329f
...@@ -118,8 +118,8 @@ int lwtunnel_build_state(u16 encap_type, ...@@ -118,8 +118,8 @@ int lwtunnel_build_state(u16 encap_type,
unsigned int family, const void *cfg, unsigned int family, const void *cfg,
struct lwtunnel_state **lws, struct lwtunnel_state **lws,
struct netlink_ext_ack *extack); struct netlink_ext_ack *extack);
int lwtunnel_fill_encap(struct sk_buff *skb, int lwtunnel_fill_encap(struct sk_buff *skb, struct lwtunnel_state *lwtstate,
struct lwtunnel_state *lwtstate); int encap_attr, int encap_type_attr);
int lwtunnel_get_encap_size(struct lwtunnel_state *lwtstate); int lwtunnel_get_encap_size(struct lwtunnel_state *lwtstate);
struct lwtunnel_state *lwtunnel_state_alloc(int hdr_len); struct lwtunnel_state *lwtunnel_state_alloc(int hdr_len);
int lwtunnel_cmp_encap(struct lwtunnel_state *a, struct lwtunnel_state *b); int lwtunnel_cmp_encap(struct lwtunnel_state *a, struct lwtunnel_state *b);
...@@ -219,7 +219,8 @@ static inline int lwtunnel_build_state(u16 encap_type, ...@@ -219,7 +219,8 @@ static inline int lwtunnel_build_state(u16 encap_type,
} }
static inline int lwtunnel_fill_encap(struct sk_buff *skb, static inline int lwtunnel_fill_encap(struct sk_buff *skb,
struct lwtunnel_state *lwtstate) struct lwtunnel_state *lwtstate,
int encap_attr, int encap_type_attr)
{ {
return 0; return 0;
} }
......
...@@ -223,7 +223,8 @@ void lwtstate_free(struct lwtunnel_state *lws) ...@@ -223,7 +223,8 @@ void lwtstate_free(struct lwtunnel_state *lws)
} }
EXPORT_SYMBOL_GPL(lwtstate_free); EXPORT_SYMBOL_GPL(lwtstate_free);
int lwtunnel_fill_encap(struct sk_buff *skb, struct lwtunnel_state *lwtstate) int lwtunnel_fill_encap(struct sk_buff *skb, struct lwtunnel_state *lwtstate,
int encap_attr, int encap_type_attr)
{ {
const struct lwtunnel_encap_ops *ops; const struct lwtunnel_encap_ops *ops;
struct nlattr *nest; struct nlattr *nest;
...@@ -236,7 +237,7 @@ int lwtunnel_fill_encap(struct sk_buff *skb, struct lwtunnel_state *lwtstate) ...@@ -236,7 +237,7 @@ int lwtunnel_fill_encap(struct sk_buff *skb, struct lwtunnel_state *lwtstate)
lwtstate->type > LWTUNNEL_ENCAP_MAX) lwtstate->type > LWTUNNEL_ENCAP_MAX)
return 0; return 0;
nest = nla_nest_start(skb, RTA_ENCAP); nest = nla_nest_start(skb, encap_attr);
if (!nest) if (!nest)
return -EMSGSIZE; return -EMSGSIZE;
...@@ -250,7 +251,7 @@ int lwtunnel_fill_encap(struct sk_buff *skb, struct lwtunnel_state *lwtstate) ...@@ -250,7 +251,7 @@ int lwtunnel_fill_encap(struct sk_buff *skb, struct lwtunnel_state *lwtstate)
if (ret) if (ret)
goto nla_put_failure; goto nla_put_failure;
nla_nest_end(skb, nest); nla_nest_end(skb, nest);
ret = nla_put_u16(skb, RTA_ENCAP_TYPE, lwtstate->type); ret = nla_put_u16(skb, encap_type_attr, lwtstate->type);
if (ret) if (ret)
goto nla_put_failure; goto nla_put_failure;
......
...@@ -1503,7 +1503,8 @@ int fib_nexthop_info(struct sk_buff *skb, const struct fib_nh_common *nhc, ...@@ -1503,7 +1503,8 @@ int fib_nexthop_info(struct sk_buff *skb, const struct fib_nh_common *nhc,
goto nla_put_failure; goto nla_put_failure;
if (nhc->nhc_lwtstate && if (nhc->nhc_lwtstate &&
lwtunnel_fill_encap(skb, nhc->nhc_lwtstate) < 0) lwtunnel_fill_encap(skb, nhc->nhc_lwtstate,
RTA_ENCAP, RTA_ENCAP_TYPE) < 0)
goto nla_put_failure; goto nla_put_failure;
return 0; return 0;
......
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