blob: af9d5382f6cbae8c38d45106f5702bd1e66c5671 [file] [log] [blame]
Thomas Graff38a9eb2015-07-21 10:43:56 +02001#ifndef __NET_DST_METADATA_H
2#define __NET_DST_METADATA_H 1
3
4#include <linux/skbuff.h>
5#include <net/ip_tunnels.h>
6#include <net/dst.h>
7
8struct metadata_dst {
9 struct dst_entry dst;
Thomas Grafee122c72015-07-21 10:43:58 +020010 union {
11 struct ip_tunnel_info tun_info;
12 } u;
Thomas Graff38a9eb2015-07-21 10:43:56 +020013};
14
15static inline struct metadata_dst *skb_metadata_dst(struct sk_buff *skb)
16{
17 struct metadata_dst *md_dst = (struct metadata_dst *) skb_dst(skb);
18
19 if (md_dst && md_dst->dst.flags & DST_METADATA)
20 return md_dst;
21
22 return NULL;
23}
24
Jiri Benc61adedf2015-08-20 13:56:25 +020025static inline struct ip_tunnel_info *skb_tunnel_info(struct sk_buff *skb)
Thomas Grafee122c72015-07-21 10:43:58 +020026{
27 struct metadata_dst *md_dst = skb_metadata_dst(skb);
Jiri Benc61adedf2015-08-20 13:56:25 +020028 struct dst_entry *dst;
Thomas Grafee122c72015-07-21 10:43:58 +020029
30 if (md_dst)
31 return &md_dst->u.tun_info;
32
Jiri Benc61adedf2015-08-20 13:56:25 +020033 dst = skb_dst(skb);
34 if (dst && dst->lwtstate)
35 return lwt_tun_info(dst->lwtstate);
Thomas Graf3093fbe2015-07-21 10:44:00 +020036
Thomas Grafee122c72015-07-21 10:43:58 +020037 return NULL;
38}
39
Thomas Graff38a9eb2015-07-21 10:43:56 +020040static inline bool skb_valid_dst(const struct sk_buff *skb)
41{
42 struct dst_entry *dst = skb_dst(skb);
43
44 return dst && !(dst->flags & DST_METADATA);
45}
46
47struct metadata_dst *metadata_dst_alloc(u8 optslen, gfp_t flags);
Alexei Starovoitovd3aa45c2015-07-30 15:36:57 -070048struct metadata_dst __percpu *metadata_dst_alloc_percpu(u8 optslen, gfp_t flags);
Thomas Graff38a9eb2015-07-21 10:43:56 +020049
Pravin B Shelar4c222792015-08-30 18:09:38 -070050static inline struct metadata_dst *tun_rx_dst(int md_size)
Pravin B Shelarc29a70d2015-08-26 23:46:50 -070051{
52 struct metadata_dst *tun_dst;
Pravin B Shelarc29a70d2015-08-26 23:46:50 -070053
54 tun_dst = metadata_dst_alloc(md_size, GFP_ATOMIC);
55 if (!tun_dst)
56 return NULL;
57
Pravin B Shelar4c222792015-08-30 18:09:38 -070058 tun_dst->u.tun_info.options_len = 0;
59 tun_dst->u.tun_info.mode = 0;
Pravin B Shelarc29a70d2015-08-26 23:46:50 -070060 return tun_dst;
61}
62
63static inline struct metadata_dst *ip_tun_rx_dst(struct sk_buff *skb,
64 __be16 flags,
65 __be64 tunnel_id,
66 int md_size)
67{
68 const struct iphdr *iph = ip_hdr(skb);
69 struct metadata_dst *tun_dst;
Pravin B Shelarc29a70d2015-08-26 23:46:50 -070070
Pravin B Shelar4c222792015-08-30 18:09:38 -070071 tun_dst = tun_rx_dst(md_size);
Pravin B Shelarc29a70d2015-08-26 23:46:50 -070072 if (!tun_dst)
73 return NULL;
74
Pravin B Shelar4c222792015-08-30 18:09:38 -070075 ip_tunnel_key_init(&tun_dst->u.tun_info.key,
76 iph->saddr, iph->daddr, iph->tos, iph->ttl,
77 0, 0, tunnel_id, flags);
Pravin B Shelarc29a70d2015-08-26 23:46:50 -070078 return tun_dst;
79}
80
81static inline struct metadata_dst *ipv6_tun_rx_dst(struct sk_buff *skb,
82 __be16 flags,
83 __be64 tunnel_id,
84 int md_size)
85{
86 const struct ipv6hdr *ip6h = ipv6_hdr(skb);
87 struct metadata_dst *tun_dst;
88 struct ip_tunnel_info *info;
89
Pravin B Shelar4c222792015-08-30 18:09:38 -070090 tun_dst = tun_rx_dst(md_size);
Pravin B Shelarc29a70d2015-08-26 23:46:50 -070091 if (!tun_dst)
92 return NULL;
93
94 info = &tun_dst->u.tun_info;
Pravin B Shelar4c222792015-08-30 18:09:38 -070095 info->mode = IP_TUNNEL_INFO_IPV6;
96 info->key.tun_flags = flags;
97 info->key.tun_id = tunnel_id;
98 info->key.tp_src = 0;
99 info->key.tp_dst = 0;
100
Pravin B Shelarc29a70d2015-08-26 23:46:50 -0700101 info->key.u.ipv6.src = ip6h->saddr;
102 info->key.u.ipv6.dst = ip6h->daddr;
103 info->key.tos = ipv6_get_dsfield(ip6h);
104 info->key.ttl = ip6h->hop_limit;
105 return tun_dst;
106}
107
Thomas Graff38a9eb2015-07-21 10:43:56 +0200108#endif /* __NET_DST_METADATA_H */