blob: 87a0bb8d449f2475f48c81efc05533e60fd8cd38 [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
Jakub Kicinski3fcece12017-06-23 22:11:58 +02008enum metadata_type {
9 METADATA_IP_TUNNEL,
10 METADATA_HW_PORT_MUX,
11};
12
13struct hw_port_info {
14 struct net_device *lower_dev;
15 u32 port_id;
16};
17
Thomas Graff38a9eb2015-07-21 10:43:56 +020018struct metadata_dst {
19 struct dst_entry dst;
Jakub Kicinski3fcece12017-06-23 22:11:58 +020020 enum metadata_type type;
Thomas Grafee122c72015-07-21 10:43:58 +020021 union {
22 struct ip_tunnel_info tun_info;
Jakub Kicinski3fcece12017-06-23 22:11:58 +020023 struct hw_port_info port_info;
Thomas Grafee122c72015-07-21 10:43:58 +020024 } u;
Thomas Graff38a9eb2015-07-21 10:43:56 +020025};
26
Simon Horman32f16362017-10-02 10:41:15 +020027static inline struct metadata_dst *skb_metadata_dst(const struct sk_buff *skb)
Thomas Graff38a9eb2015-07-21 10:43:56 +020028{
29 struct metadata_dst *md_dst = (struct metadata_dst *) skb_dst(skb);
30
31 if (md_dst && md_dst->dst.flags & DST_METADATA)
32 return md_dst;
33
34 return NULL;
35}
36
Simon Horman32f16362017-10-02 10:41:15 +020037static inline struct ip_tunnel_info *
38skb_tunnel_info(const struct sk_buff *skb)
Thomas Grafee122c72015-07-21 10:43:58 +020039{
40 struct metadata_dst *md_dst = skb_metadata_dst(skb);
Jiri Benc61adedf2015-08-20 13:56:25 +020041 struct dst_entry *dst;
Thomas Grafee122c72015-07-21 10:43:58 +020042
Jakub Kicinski3fcece12017-06-23 22:11:58 +020043 if (md_dst && md_dst->type == METADATA_IP_TUNNEL)
Thomas Grafee122c72015-07-21 10:43:58 +020044 return &md_dst->u.tun_info;
45
Jiri Benc61adedf2015-08-20 13:56:25 +020046 dst = skb_dst(skb);
47 if (dst && dst->lwtstate)
48 return lwt_tun_info(dst->lwtstate);
Thomas Graf3093fbe2015-07-21 10:44:00 +020049
Thomas Grafee122c72015-07-21 10:43:58 +020050 return NULL;
51}
52
Thomas Graff38a9eb2015-07-21 10:43:56 +020053static inline bool skb_valid_dst(const struct sk_buff *skb)
54{
55 struct dst_entry *dst = skb_dst(skb);
56
57 return dst && !(dst->flags & DST_METADATA);
58}
59
Jesse Grossce87fc62016-01-20 17:59:49 -080060static inline int skb_metadata_dst_cmp(const struct sk_buff *skb_a,
61 const struct sk_buff *skb_b)
62{
63 const struct metadata_dst *a, *b;
64
65 if (!(skb_a->_skb_refdst | skb_b->_skb_refdst))
66 return 0;
67
68 a = (const struct metadata_dst *) skb_dst(skb_a);
69 b = (const struct metadata_dst *) skb_dst(skb_b);
70
Jakub Kicinski3fcece12017-06-23 22:11:58 +020071 if (!a != !b || a->type != b->type)
Jesse Grossce87fc62016-01-20 17:59:49 -080072 return 1;
73
Jakub Kicinski3fcece12017-06-23 22:11:58 +020074 switch (a->type) {
75 case METADATA_HW_PORT_MUX:
76 return memcmp(&a->u.port_info, &b->u.port_info,
77 sizeof(a->u.port_info));
78 case METADATA_IP_TUNNEL:
79 return memcmp(&a->u.tun_info, &b->u.tun_info,
80 sizeof(a->u.tun_info) +
81 a->u.tun_info.options_len);
82 default:
83 return 1;
84 }
Jesse Grossce87fc62016-01-20 17:59:49 -080085}
86
Paolo Abenid71785f2016-02-12 15:43:57 +010087void metadata_dst_free(struct metadata_dst *);
Jakub Kicinski3fcece12017-06-23 22:11:58 +020088struct metadata_dst *metadata_dst_alloc(u8 optslen, enum metadata_type type,
89 gfp_t flags);
Jakub Kicinskid66f2b92017-10-09 10:30:14 -070090void metadata_dst_free_percpu(struct metadata_dst __percpu *md_dst);
Jakub Kicinski3fcece12017-06-23 22:11:58 +020091struct metadata_dst __percpu *
92metadata_dst_alloc_percpu(u8 optslen, enum metadata_type type, gfp_t flags);
Thomas Graff38a9eb2015-07-21 10:43:56 +020093
Pravin B Shelar4c222792015-08-30 18:09:38 -070094static inline struct metadata_dst *tun_rx_dst(int md_size)
Pravin B Shelarc29a70d2015-08-26 23:46:50 -070095{
96 struct metadata_dst *tun_dst;
Pravin B Shelarc29a70d2015-08-26 23:46:50 -070097
Jakub Kicinski3fcece12017-06-23 22:11:58 +020098 tun_dst = metadata_dst_alloc(md_size, METADATA_IP_TUNNEL, GFP_ATOMIC);
Pravin B Shelarc29a70d2015-08-26 23:46:50 -070099 if (!tun_dst)
100 return NULL;
101
Pravin B Shelar4c222792015-08-30 18:09:38 -0700102 tun_dst->u.tun_info.options_len = 0;
103 tun_dst->u.tun_info.mode = 0;
Pravin B Shelarc29a70d2015-08-26 23:46:50 -0700104 return tun_dst;
105}
106
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700107static inline struct metadata_dst *tun_dst_unclone(struct sk_buff *skb)
108{
109 struct metadata_dst *md_dst = skb_metadata_dst(skb);
Tobias Klauserf63ce5b2015-11-04 13:49:49 +0100110 int md_size;
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700111 struct metadata_dst *new_md;
112
Jakub Kicinski3fcece12017-06-23 22:11:58 +0200113 if (!md_dst || md_dst->type != METADATA_IP_TUNNEL)
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700114 return ERR_PTR(-EINVAL);
115
Tobias Klauserf63ce5b2015-11-04 13:49:49 +0100116 md_size = md_dst->u.tun_info.options_len;
Jakub Kicinski3fcece12017-06-23 22:11:58 +0200117 new_md = metadata_dst_alloc(md_size, METADATA_IP_TUNNEL, GFP_ATOMIC);
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700118 if (!new_md)
119 return ERR_PTR(-ENOMEM);
120
121 memcpy(&new_md->u.tun_info, &md_dst->u.tun_info,
122 sizeof(struct ip_tunnel_info) + md_size);
123 skb_dst_drop(skb);
124 dst_hold(&new_md->dst);
125 skb_dst_set(skb, &new_md->dst);
126 return new_md;
127}
128
129static inline struct ip_tunnel_info *skb_tunnel_info_unclone(struct sk_buff *skb)
130{
131 struct metadata_dst *dst;
132
133 dst = tun_dst_unclone(skb);
134 if (IS_ERR(dst))
135 return NULL;
136
137 return &dst->u.tun_info;
138}
139
Amir Vadai2ff378b2016-09-08 16:23:46 +0300140static inline struct metadata_dst *__ip_tun_set_dst(__be32 saddr,
141 __be32 daddr,
142 __u8 tos, __u8 ttl,
Hadar Hen Zion24ba8982016-11-07 15:14:40 +0200143 __be16 tp_dst,
Amir Vadai2ff378b2016-09-08 16:23:46 +0300144 __be16 flags,
145 __be64 tunnel_id,
146 int md_size)
Pravin B Shelarc29a70d2015-08-26 23:46:50 -0700147{
Pravin B Shelarc29a70d2015-08-26 23:46:50 -0700148 struct metadata_dst *tun_dst;
Pravin B Shelarc29a70d2015-08-26 23:46:50 -0700149
Pravin B Shelar4c222792015-08-30 18:09:38 -0700150 tun_dst = tun_rx_dst(md_size);
Pravin B Shelarc29a70d2015-08-26 23:46:50 -0700151 if (!tun_dst)
152 return NULL;
153
Pravin B Shelar4c222792015-08-30 18:09:38 -0700154 ip_tunnel_key_init(&tun_dst->u.tun_info.key,
Amir Vadai2ff378b2016-09-08 16:23:46 +0300155 saddr, daddr, tos, ttl,
Hadar Hen Zion24ba8982016-11-07 15:14:40 +0200156 0, 0, tp_dst, tunnel_id, flags);
Pravin B Shelarc29a70d2015-08-26 23:46:50 -0700157 return tun_dst;
158}
159
Amir Vadai2ff378b2016-09-08 16:23:46 +0300160static inline struct metadata_dst *ip_tun_rx_dst(struct sk_buff *skb,
Pravin B Shelarc29a70d2015-08-26 23:46:50 -0700161 __be16 flags,
162 __be64 tunnel_id,
163 int md_size)
164{
Amir Vadai2ff378b2016-09-08 16:23:46 +0300165 const struct iphdr *iph = ip_hdr(skb);
166
167 return __ip_tun_set_dst(iph->saddr, iph->daddr, iph->tos, iph->ttl,
Hadar Hen Zion24ba8982016-11-07 15:14:40 +0200168 0, flags, tunnel_id, md_size);
Amir Vadai2ff378b2016-09-08 16:23:46 +0300169}
170
171static inline struct metadata_dst *__ipv6_tun_set_dst(const struct in6_addr *saddr,
172 const struct in6_addr *daddr,
173 __u8 tos, __u8 ttl,
Hadar Hen Zion24ba8982016-11-07 15:14:40 +0200174 __be16 tp_dst,
Amir Vadai2ff378b2016-09-08 16:23:46 +0300175 __be32 label,
176 __be16 flags,
177 __be64 tunnel_id,
178 int md_size)
179{
Pravin B Shelarc29a70d2015-08-26 23:46:50 -0700180 struct metadata_dst *tun_dst;
181 struct ip_tunnel_info *info;
182
Pravin B Shelar4c222792015-08-30 18:09:38 -0700183 tun_dst = tun_rx_dst(md_size);
Pravin B Shelarc29a70d2015-08-26 23:46:50 -0700184 if (!tun_dst)
185 return NULL;
186
187 info = &tun_dst->u.tun_info;
Pravin B Shelar4c222792015-08-30 18:09:38 -0700188 info->mode = IP_TUNNEL_INFO_IPV6;
189 info->key.tun_flags = flags;
190 info->key.tun_id = tunnel_id;
191 info->key.tp_src = 0;
Hadar Hen Zion24ba8982016-11-07 15:14:40 +0200192 info->key.tp_dst = tp_dst;
Pravin B Shelar4c222792015-08-30 18:09:38 -0700193
Amir Vadai2ff378b2016-09-08 16:23:46 +0300194 info->key.u.ipv6.src = *saddr;
195 info->key.u.ipv6.dst = *daddr;
Daniel Borkmann13461142016-03-09 03:00:02 +0100196
Amir Vadai2ff378b2016-09-08 16:23:46 +0300197 info->key.tos = tos;
198 info->key.ttl = ttl;
199 info->key.label = label;
Daniel Borkmann13461142016-03-09 03:00:02 +0100200
Pravin B Shelarc29a70d2015-08-26 23:46:50 -0700201 return tun_dst;
202}
203
Amir Vadai2ff378b2016-09-08 16:23:46 +0300204static inline struct metadata_dst *ipv6_tun_rx_dst(struct sk_buff *skb,
205 __be16 flags,
206 __be64 tunnel_id,
207 int md_size)
208{
209 const struct ipv6hdr *ip6h = ipv6_hdr(skb);
210
211 return __ipv6_tun_set_dst(&ip6h->saddr, &ip6h->daddr,
212 ipv6_get_dsfield(ip6h), ip6h->hop_limit,
Hadar Hen Zion24ba8982016-11-07 15:14:40 +0200213 0, ip6_flowlabel(ip6h), flags, tunnel_id,
Amir Vadai2ff378b2016-09-08 16:23:46 +0300214 md_size);
215}
Thomas Graff38a9eb2015-07-21 10:43:56 +0200216#endif /* __NET_DST_METADATA_H */