blob: 56cb3c38569a7705b38c113e08e90c58e944ee75 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Thomas Graff38a9eb2015-07-21 10:43:56 +02002#ifndef __NET_DST_METADATA_H
3#define __NET_DST_METADATA_H 1
4
5#include <linux/skbuff.h>
6#include <net/ip_tunnels.h>
7#include <net/dst.h>
8
Jakub Kicinski3fcece12017-06-23 22:11:58 +02009enum metadata_type {
10 METADATA_IP_TUNNEL,
11 METADATA_HW_PORT_MUX,
12};
13
14struct hw_port_info {
15 struct net_device *lower_dev;
16 u32 port_id;
17};
18
Thomas Graff38a9eb2015-07-21 10:43:56 +020019struct metadata_dst {
20 struct dst_entry dst;
Jakub Kicinski3fcece12017-06-23 22:11:58 +020021 enum metadata_type type;
Thomas Grafee122c72015-07-21 10:43:58 +020022 union {
23 struct ip_tunnel_info tun_info;
Jakub Kicinski3fcece12017-06-23 22:11:58 +020024 struct hw_port_info port_info;
Thomas Grafee122c72015-07-21 10:43:58 +020025 } u;
Thomas Graff38a9eb2015-07-21 10:43:56 +020026};
27
Simon Horman32f16362017-10-02 10:41:15 +020028static inline struct metadata_dst *skb_metadata_dst(const struct sk_buff *skb)
Thomas Graff38a9eb2015-07-21 10:43:56 +020029{
30 struct metadata_dst *md_dst = (struct metadata_dst *) skb_dst(skb);
31
32 if (md_dst && md_dst->dst.flags & DST_METADATA)
33 return md_dst;
34
35 return NULL;
36}
37
Simon Horman32f16362017-10-02 10:41:15 +020038static inline struct ip_tunnel_info *
39skb_tunnel_info(const struct sk_buff *skb)
Thomas Grafee122c72015-07-21 10:43:58 +020040{
41 struct metadata_dst *md_dst = skb_metadata_dst(skb);
Jiri Benc61adedf2015-08-20 13:56:25 +020042 struct dst_entry *dst;
Thomas Grafee122c72015-07-21 10:43:58 +020043
Jakub Kicinski3fcece12017-06-23 22:11:58 +020044 if (md_dst && md_dst->type == METADATA_IP_TUNNEL)
Thomas Grafee122c72015-07-21 10:43:58 +020045 return &md_dst->u.tun_info;
46
Jiri Benc61adedf2015-08-20 13:56:25 +020047 dst = skb_dst(skb);
48 if (dst && dst->lwtstate)
49 return lwt_tun_info(dst->lwtstate);
Thomas Graf3093fbe2015-07-21 10:44:00 +020050
Thomas Grafee122c72015-07-21 10:43:58 +020051 return NULL;
52}
53
Thomas Graff38a9eb2015-07-21 10:43:56 +020054static inline bool skb_valid_dst(const struct sk_buff *skb)
55{
56 struct dst_entry *dst = skb_dst(skb);
57
58 return dst && !(dst->flags & DST_METADATA);
59}
60
Jesse Grossce87fc62016-01-20 17:59:49 -080061static inline int skb_metadata_dst_cmp(const struct sk_buff *skb_a,
62 const struct sk_buff *skb_b)
63{
64 const struct metadata_dst *a, *b;
65
66 if (!(skb_a->_skb_refdst | skb_b->_skb_refdst))
67 return 0;
68
69 a = (const struct metadata_dst *) skb_dst(skb_a);
70 b = (const struct metadata_dst *) skb_dst(skb_b);
71
Jakub Kicinski3fcece12017-06-23 22:11:58 +020072 if (!a != !b || a->type != b->type)
Jesse Grossce87fc62016-01-20 17:59:49 -080073 return 1;
74
Jakub Kicinski3fcece12017-06-23 22:11:58 +020075 switch (a->type) {
76 case METADATA_HW_PORT_MUX:
77 return memcmp(&a->u.port_info, &b->u.port_info,
78 sizeof(a->u.port_info));
79 case METADATA_IP_TUNNEL:
80 return memcmp(&a->u.tun_info, &b->u.tun_info,
81 sizeof(a->u.tun_info) +
82 a->u.tun_info.options_len);
83 default:
84 return 1;
85 }
Jesse Grossce87fc62016-01-20 17:59:49 -080086}
87
Paolo Abenid71785f2016-02-12 15:43:57 +010088void metadata_dst_free(struct metadata_dst *);
Jakub Kicinski3fcece12017-06-23 22:11:58 +020089struct metadata_dst *metadata_dst_alloc(u8 optslen, enum metadata_type type,
90 gfp_t flags);
Jakub Kicinskid66f2b92017-10-09 10:30:14 -070091void metadata_dst_free_percpu(struct metadata_dst __percpu *md_dst);
Jakub Kicinski3fcece12017-06-23 22:11:58 +020092struct metadata_dst __percpu *
93metadata_dst_alloc_percpu(u8 optslen, enum metadata_type type, gfp_t flags);
Thomas Graff38a9eb2015-07-21 10:43:56 +020094
Pravin B Shelar4c222792015-08-30 18:09:38 -070095static inline struct metadata_dst *tun_rx_dst(int md_size)
Pravin B Shelarc29a70d2015-08-26 23:46:50 -070096{
97 struct metadata_dst *tun_dst;
Pravin B Shelarc29a70d2015-08-26 23:46:50 -070098
Jakub Kicinski3fcece12017-06-23 22:11:58 +020099 tun_dst = metadata_dst_alloc(md_size, METADATA_IP_TUNNEL, GFP_ATOMIC);
Pravin B Shelarc29a70d2015-08-26 23:46:50 -0700100 if (!tun_dst)
101 return NULL;
102
Pravin B Shelar4c222792015-08-30 18:09:38 -0700103 tun_dst->u.tun_info.options_len = 0;
104 tun_dst->u.tun_info.mode = 0;
Pravin B Shelarc29a70d2015-08-26 23:46:50 -0700105 return tun_dst;
106}
107
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700108static inline struct metadata_dst *tun_dst_unclone(struct sk_buff *skb)
109{
110 struct metadata_dst *md_dst = skb_metadata_dst(skb);
Tobias Klauserf63ce5b2015-11-04 13:49:49 +0100111 int md_size;
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700112 struct metadata_dst *new_md;
113
Jakub Kicinski3fcece12017-06-23 22:11:58 +0200114 if (!md_dst || md_dst->type != METADATA_IP_TUNNEL)
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700115 return ERR_PTR(-EINVAL);
116
Tobias Klauserf63ce5b2015-11-04 13:49:49 +0100117 md_size = md_dst->u.tun_info.options_len;
Jakub Kicinski3fcece12017-06-23 22:11:58 +0200118 new_md = metadata_dst_alloc(md_size, METADATA_IP_TUNNEL, GFP_ATOMIC);
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700119 if (!new_md)
120 return ERR_PTR(-ENOMEM);
121
122 memcpy(&new_md->u.tun_info, &md_dst->u.tun_info,
123 sizeof(struct ip_tunnel_info) + md_size);
124 skb_dst_drop(skb);
125 dst_hold(&new_md->dst);
126 skb_dst_set(skb, &new_md->dst);
127 return new_md;
128}
129
130static inline struct ip_tunnel_info *skb_tunnel_info_unclone(struct sk_buff *skb)
131{
132 struct metadata_dst *dst;
133
134 dst = tun_dst_unclone(skb);
135 if (IS_ERR(dst))
136 return NULL;
137
138 return &dst->u.tun_info;
139}
140
Amir Vadai2ff378b2016-09-08 16:23:46 +0300141static inline struct metadata_dst *__ip_tun_set_dst(__be32 saddr,
142 __be32 daddr,
143 __u8 tos, __u8 ttl,
Hadar Hen Zion24ba8982016-11-07 15:14:40 +0200144 __be16 tp_dst,
Amir Vadai2ff378b2016-09-08 16:23:46 +0300145 __be16 flags,
146 __be64 tunnel_id,
147 int md_size)
Pravin B Shelarc29a70d2015-08-26 23:46:50 -0700148{
Pravin B Shelarc29a70d2015-08-26 23:46:50 -0700149 struct metadata_dst *tun_dst;
Pravin B Shelarc29a70d2015-08-26 23:46:50 -0700150
Pravin B Shelar4c222792015-08-30 18:09:38 -0700151 tun_dst = tun_rx_dst(md_size);
Pravin B Shelarc29a70d2015-08-26 23:46:50 -0700152 if (!tun_dst)
153 return NULL;
154
Pravin B Shelar4c222792015-08-30 18:09:38 -0700155 ip_tunnel_key_init(&tun_dst->u.tun_info.key,
Amir Vadai2ff378b2016-09-08 16:23:46 +0300156 saddr, daddr, tos, ttl,
Hadar Hen Zion24ba8982016-11-07 15:14:40 +0200157 0, 0, tp_dst, tunnel_id, flags);
Pravin B Shelarc29a70d2015-08-26 23:46:50 -0700158 return tun_dst;
159}
160
Amir Vadai2ff378b2016-09-08 16:23:46 +0300161static inline struct metadata_dst *ip_tun_rx_dst(struct sk_buff *skb,
Pravin B Shelarc29a70d2015-08-26 23:46:50 -0700162 __be16 flags,
163 __be64 tunnel_id,
164 int md_size)
165{
Amir Vadai2ff378b2016-09-08 16:23:46 +0300166 const struct iphdr *iph = ip_hdr(skb);
167
168 return __ip_tun_set_dst(iph->saddr, iph->daddr, iph->tos, iph->ttl,
Hadar Hen Zion24ba8982016-11-07 15:14:40 +0200169 0, flags, tunnel_id, md_size);
Amir Vadai2ff378b2016-09-08 16:23:46 +0300170}
171
172static inline struct metadata_dst *__ipv6_tun_set_dst(const struct in6_addr *saddr,
173 const struct in6_addr *daddr,
174 __u8 tos, __u8 ttl,
Hadar Hen Zion24ba8982016-11-07 15:14:40 +0200175 __be16 tp_dst,
Amir Vadai2ff378b2016-09-08 16:23:46 +0300176 __be32 label,
177 __be16 flags,
178 __be64 tunnel_id,
179 int md_size)
180{
Pravin B Shelarc29a70d2015-08-26 23:46:50 -0700181 struct metadata_dst *tun_dst;
182 struct ip_tunnel_info *info;
183
Pravin B Shelar4c222792015-08-30 18:09:38 -0700184 tun_dst = tun_rx_dst(md_size);
Pravin B Shelarc29a70d2015-08-26 23:46:50 -0700185 if (!tun_dst)
186 return NULL;
187
188 info = &tun_dst->u.tun_info;
Pravin B Shelar4c222792015-08-30 18:09:38 -0700189 info->mode = IP_TUNNEL_INFO_IPV6;
190 info->key.tun_flags = flags;
191 info->key.tun_id = tunnel_id;
192 info->key.tp_src = 0;
Hadar Hen Zion24ba8982016-11-07 15:14:40 +0200193 info->key.tp_dst = tp_dst;
Pravin B Shelar4c222792015-08-30 18:09:38 -0700194
Amir Vadai2ff378b2016-09-08 16:23:46 +0300195 info->key.u.ipv6.src = *saddr;
196 info->key.u.ipv6.dst = *daddr;
Daniel Borkmann13461142016-03-09 03:00:02 +0100197
Amir Vadai2ff378b2016-09-08 16:23:46 +0300198 info->key.tos = tos;
199 info->key.ttl = ttl;
200 info->key.label = label;
Daniel Borkmann13461142016-03-09 03:00:02 +0100201
Pravin B Shelarc29a70d2015-08-26 23:46:50 -0700202 return tun_dst;
203}
204
Amir Vadai2ff378b2016-09-08 16:23:46 +0300205static inline struct metadata_dst *ipv6_tun_rx_dst(struct sk_buff *skb,
206 __be16 flags,
207 __be64 tunnel_id,
208 int md_size)
209{
210 const struct ipv6hdr *ip6h = ipv6_hdr(skb);
211
212 return __ipv6_tun_set_dst(&ip6h->saddr, &ip6h->daddr,
213 ipv6_get_dsfield(ip6h), ip6h->hop_limit,
Hadar Hen Zion24ba8982016-11-07 15:14:40 +0200214 0, ip6_flowlabel(ip6h), flags, tunnel_id,
Amir Vadai2ff378b2016-09-08 16:23:46 +0300215 md_size);
216}
Thomas Graff38a9eb2015-07-21 10:43:56 +0200217#endif /* __NET_DST_METADATA_H */