2015-07-21 16:43:56 +08:00
|
|
|
#ifndef __NET_DST_METADATA_H
|
|
|
|
#define __NET_DST_METADATA_H 1
|
|
|
|
|
|
|
|
#include <linux/skbuff.h>
|
|
|
|
#include <net/ip_tunnels.h>
|
|
|
|
#include <net/dst.h>
|
|
|
|
|
|
|
|
struct metadata_dst {
|
|
|
|
struct dst_entry dst;
|
|
|
|
size_t opts_len;
|
2015-07-21 16:43:58 +08:00
|
|
|
union {
|
|
|
|
struct ip_tunnel_info tun_info;
|
|
|
|
} u;
|
2015-07-21 16:43:56 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct metadata_dst *skb_metadata_dst(struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
struct metadata_dst *md_dst = (struct metadata_dst *) skb_dst(skb);
|
|
|
|
|
|
|
|
if (md_dst && md_dst->dst.flags & DST_METADATA)
|
|
|
|
return md_dst;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-07-21 16:43:58 +08:00
|
|
|
static inline struct ip_tunnel_info *skb_tunnel_info(struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
struct metadata_dst *md_dst = skb_metadata_dst(skb);
|
|
|
|
|
|
|
|
if (md_dst)
|
|
|
|
return &md_dst->u.tun_info;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-07-21 16:43:56 +08:00
|
|
|
static inline bool skb_valid_dst(const struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
struct dst_entry *dst = skb_dst(skb);
|
|
|
|
|
|
|
|
return dst && !(dst->flags & DST_METADATA);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct metadata_dst *metadata_dst_alloc(u8 optslen, gfp_t flags);
|
|
|
|
|
|
|
|
#endif /* __NET_DST_METADATA_H */
|