blob: 5bec7817a7b91f99b2e9bb7b7e05b4281d192e8b [file] [log] [blame]
David Lebrun6c8702c2016-11-08 14:57:41 +01001/*
2 * SR-IPv6 implementation
3 *
4 * Author:
5 * David Lebrun <david.lebrun@uclouvain.be>
6 *
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13
14#include <linux/types.h>
15#include <linux/skbuff.h>
16#include <linux/net.h>
17#include <linux/module.h>
18#include <net/ip.h>
19#include <net/lwtunnel.h>
20#include <net/netevent.h>
21#include <net/netns/generic.h>
22#include <net/ip6_fib.h>
23#include <net/route.h>
24#include <net/seg6.h>
25#include <linux/seg6.h>
26#include <linux/seg6_iptunnel.h>
27#include <net/addrconf.h>
28#include <net/ip6_route.h>
David Lebrun6c8702c2016-11-08 14:57:41 +010029#include <net/dst_cache.h>
David Lebrun9baee832016-11-08 14:59:19 +010030#ifdef CONFIG_IPV6_SEG6_HMAC
31#include <net/seg6_hmac.h>
32#endif
David Lebrun6c8702c2016-11-08 14:57:41 +010033
34struct seg6_lwt {
David Lebrun6c8702c2016-11-08 14:57:41 +010035 struct dst_cache cache;
David Lebrun6c8702c2016-11-08 14:57:41 +010036 struct seg6_iptunnel_encap tuninfo[0];
37};
38
39static inline struct seg6_lwt *seg6_lwt_lwtunnel(struct lwtunnel_state *lwt)
40{
41 return (struct seg6_lwt *)lwt->data;
42}
43
44static inline struct seg6_iptunnel_encap *
45seg6_encap_lwtunnel(struct lwtunnel_state *lwt)
46{
47 return seg6_lwt_lwtunnel(lwt)->tuninfo;
48}
49
50static const struct nla_policy seg6_iptunnel_policy[SEG6_IPTUNNEL_MAX + 1] = {
51 [SEG6_IPTUNNEL_SRH] = { .type = NLA_BINARY },
52};
53
Wei Yongjunbb4005b2017-02-06 16:15:05 +000054static int nla_put_srh(struct sk_buff *skb, int attrtype,
55 struct seg6_iptunnel_encap *tuninfo)
David Lebrun6c8702c2016-11-08 14:57:41 +010056{
57 struct seg6_iptunnel_encap *data;
58 struct nlattr *nla;
59 int len;
60
61 len = SEG6_IPTUN_ENCAP_SIZE(tuninfo);
62
63 nla = nla_reserve(skb, attrtype, len);
64 if (!nla)
65 return -EMSGSIZE;
66
67 data = nla_data(nla);
68 memcpy(data, tuninfo, len);
69
70 return 0;
71}
72
73static void set_tun_src(struct net *net, struct net_device *dev,
74 struct in6_addr *daddr, struct in6_addr *saddr)
75{
76 struct seg6_pernet_data *sdata = seg6_pernet(net);
77 struct in6_addr *tun_src;
78
79 rcu_read_lock();
80
81 tun_src = rcu_dereference(sdata->tun_src);
82
83 if (!ipv6_addr_any(tun_src)) {
84 memcpy(saddr, tun_src, sizeof(struct in6_addr));
85 } else {
86 ipv6_dev_get_saddr(net, dev, daddr, IPV6_PREFER_SRC_PUBLIC,
87 saddr);
88 }
89
90 rcu_read_unlock();
91}
92
93/* encapsulate an IPv6 packet within an outer IPv6 header with a given SRH */
David Lebrun32d99d02017-08-25 09:56:44 +020094int seg6_do_srh_encap(struct sk_buff *skb, struct ipv6_sr_hdr *osrh, int proto)
David Lebrun6c8702c2016-11-08 14:57:41 +010095{
96 struct net *net = dev_net(skb_dst(skb)->dev);
97 struct ipv6hdr *hdr, *inner_hdr;
98 struct ipv6_sr_hdr *isrh;
99 int hdrlen, tot_len, err;
100
101 hdrlen = (osrh->hdrlen + 1) << 3;
102 tot_len = hdrlen + sizeof(*hdr);
103
David Lebrun19d5a262017-03-24 10:46:26 +0100104 err = skb_cow_head(skb, tot_len);
David Lebrun6c8702c2016-11-08 14:57:41 +0100105 if (unlikely(err))
106 return err;
107
108 inner_hdr = ipv6_hdr(skb);
109
110 skb_push(skb, tot_len);
111 skb_reset_network_header(skb);
112 skb_mac_header_rebuild(skb);
113 hdr = ipv6_hdr(skb);
114
115 /* inherit tc, flowlabel and hlim
116 * hlim will be decremented in ip6_forward() afterwards and
117 * decapsulation will overwrite inner hlim with outer hlim
118 */
David Lebrun32d99d02017-08-25 09:56:44 +0200119
120 if (skb->protocol == htons(ETH_P_IPV6)) {
121 ip6_flow_hdr(hdr, ip6_tclass(ip6_flowinfo(inner_hdr)),
122 ip6_flowlabel(inner_hdr));
123 hdr->hop_limit = inner_hdr->hop_limit;
124 } else {
125 ip6_flow_hdr(hdr, 0, 0);
126 hdr->hop_limit = ip6_dst_hoplimit(skb_dst(skb));
127 }
128
David Lebrun6c8702c2016-11-08 14:57:41 +0100129 hdr->nexthdr = NEXTHDR_ROUTING;
130
131 isrh = (void *)hdr + sizeof(*hdr);
132 memcpy(isrh, osrh, hdrlen);
133
David Lebrun32d99d02017-08-25 09:56:44 +0200134 isrh->nexthdr = proto;
David Lebrun6c8702c2016-11-08 14:57:41 +0100135
136 hdr->daddr = isrh->segments[isrh->first_segment];
137 set_tun_src(net, skb->dev, &hdr->daddr, &hdr->saddr);
138
David Lebrun9baee832016-11-08 14:59:19 +0100139#ifdef CONFIG_IPV6_SEG6_HMAC
140 if (sr_has_hmac(isrh)) {
141 err = seg6_push_hmac(net, &hdr->saddr, isrh);
142 if (unlikely(err))
143 return err;
144 }
145#endif
146
David Lebrun6c8702c2016-11-08 14:57:41 +0100147 skb_postpush_rcsum(skb, hdr, tot_len);
148
149 return 0;
150}
David Lebrunb04c80d2017-08-05 12:38:25 +0200151EXPORT_SYMBOL_GPL(seg6_do_srh_encap);
David Lebrun6c8702c2016-11-08 14:57:41 +0100152
153/* insert an SRH within an IPv6 packet, just after the IPv6 header */
David Lebrunb04c80d2017-08-05 12:38:25 +0200154int seg6_do_srh_inline(struct sk_buff *skb, struct ipv6_sr_hdr *osrh)
David Lebrun6c8702c2016-11-08 14:57:41 +0100155{
156 struct ipv6hdr *hdr, *oldhdr;
157 struct ipv6_sr_hdr *isrh;
158 int hdrlen, err;
159
160 hdrlen = (osrh->hdrlen + 1) << 3;
161
David Lebrun19d5a262017-03-24 10:46:26 +0100162 err = skb_cow_head(skb, hdrlen);
David Lebrun6c8702c2016-11-08 14:57:41 +0100163 if (unlikely(err))
164 return err;
165
166 oldhdr = ipv6_hdr(skb);
167
168 skb_pull(skb, sizeof(struct ipv6hdr));
169 skb_postpull_rcsum(skb, skb_network_header(skb),
170 sizeof(struct ipv6hdr));
171
172 skb_push(skb, sizeof(struct ipv6hdr) + hdrlen);
173 skb_reset_network_header(skb);
174 skb_mac_header_rebuild(skb);
175
176 hdr = ipv6_hdr(skb);
177
178 memmove(hdr, oldhdr, sizeof(*hdr));
179
180 isrh = (void *)hdr + sizeof(*hdr);
181 memcpy(isrh, osrh, hdrlen);
182
183 isrh->nexthdr = hdr->nexthdr;
184 hdr->nexthdr = NEXTHDR_ROUTING;
185
186 isrh->segments[0] = hdr->daddr;
187 hdr->daddr = isrh->segments[isrh->first_segment];
188
David Lebrun9baee832016-11-08 14:59:19 +0100189#ifdef CONFIG_IPV6_SEG6_HMAC
190 if (sr_has_hmac(isrh)) {
191 struct net *net = dev_net(skb_dst(skb)->dev);
192
193 err = seg6_push_hmac(net, &hdr->saddr, isrh);
194 if (unlikely(err))
195 return err;
196 }
197#endif
198
David Lebrun6c8702c2016-11-08 14:57:41 +0100199 skb_postpush_rcsum(skb, hdr, sizeof(struct ipv6hdr) + hdrlen);
200
201 return 0;
202}
David Lebrunb04c80d2017-08-05 12:38:25 +0200203EXPORT_SYMBOL_GPL(seg6_do_srh_inline);
David Lebrun6c8702c2016-11-08 14:57:41 +0100204
205static int seg6_do_srh(struct sk_buff *skb)
206{
207 struct dst_entry *dst = skb_dst(skb);
208 struct seg6_iptunnel_encap *tinfo;
David Lebrun32d99d02017-08-25 09:56:44 +0200209 int proto, err = 0;
David Lebrun6c8702c2016-11-08 14:57:41 +0100210
211 tinfo = seg6_encap_lwtunnel(dst->lwtstate);
212
213 if (likely(!skb->encapsulation)) {
214 skb_reset_inner_headers(skb);
215 skb->encapsulation = 1;
216 }
217
218 switch (tinfo->mode) {
David Lebrun6c8702c2016-11-08 14:57:41 +0100219 case SEG6_IPTUN_MODE_INLINE:
David Lebrun32d99d02017-08-25 09:56:44 +0200220 if (skb->protocol != htons(ETH_P_IPV6))
221 return -EINVAL;
222
David Lebrun6c8702c2016-11-08 14:57:41 +0100223 err = seg6_do_srh_inline(skb, tinfo->srh);
David Lebrun32d99d02017-08-25 09:56:44 +0200224 if (err)
225 return err;
226
David Lebrun6c8702c2016-11-08 14:57:41 +0100227 skb_reset_inner_headers(skb);
228 break;
David Lebrun6c8702c2016-11-08 14:57:41 +0100229 case SEG6_IPTUN_MODE_ENCAP:
David Lebrun32d99d02017-08-25 09:56:44 +0200230 if (skb->protocol == htons(ETH_P_IPV6))
231 proto = IPPROTO_IPV6;
232 else if (skb->protocol == htons(ETH_P_IP))
233 proto = IPPROTO_IPIP;
234 else
235 return -EINVAL;
236
237 err = seg6_do_srh_encap(skb, tinfo->srh, proto);
238 if (err)
239 return err;
240
241 skb->protocol = htons(ETH_P_IPV6);
David Lebrun6c8702c2016-11-08 14:57:41 +0100242 break;
243 }
244
David Lebrun6c8702c2016-11-08 14:57:41 +0100245 ipv6_hdr(skb)->payload_len = htons(skb->len - sizeof(struct ipv6hdr));
246 skb_set_transport_header(skb, sizeof(struct ipv6hdr));
247
248 skb_set_inner_protocol(skb, skb->protocol);
249
250 return 0;
251}
252
Wei Yongjunbb4005b2017-02-06 16:15:05 +0000253static int seg6_input(struct sk_buff *skb)
David Lebrun6c8702c2016-11-08 14:57:41 +0100254{
David Lebrunaf4a2202017-03-24 10:46:27 +0100255 struct dst_entry *orig_dst = skb_dst(skb);
256 struct dst_entry *dst = NULL;
257 struct seg6_lwt *slwt;
David Lebrun6c8702c2016-11-08 14:57:41 +0100258 int err;
259
260 err = seg6_do_srh(skb);
261 if (unlikely(err)) {
262 kfree_skb(skb);
263 return err;
264 }
265
David Lebrunaf4a2202017-03-24 10:46:27 +0100266 slwt = seg6_lwt_lwtunnel(orig_dst->lwtstate);
267
David Lebrunaf4a2202017-03-24 10:46:27 +0100268 preempt_disable();
269 dst = dst_cache_get(&slwt->cache);
270 preempt_enable();
David Lebrunaf4a2202017-03-24 10:46:27 +0100271
David Lebrun6c8702c2016-11-08 14:57:41 +0100272 skb_dst_drop(skb);
David Lebrunaf4a2202017-03-24 10:46:27 +0100273
274 if (!dst) {
275 ip6_route_input(skb);
David Lebrunaf4a2202017-03-24 10:46:27 +0100276 dst = skb_dst(skb);
277 if (!dst->error) {
278 preempt_disable();
279 dst_cache_set_ip6(&slwt->cache, dst,
280 &ipv6_hdr(skb)->saddr);
281 preempt_enable();
282 }
David Lebrunaf4a2202017-03-24 10:46:27 +0100283 } else {
284 skb_dst_set(skb, dst);
285 }
David Lebrun6c8702c2016-11-08 14:57:41 +0100286
David Lebrunaf3b5152017-04-16 12:27:14 +0200287 err = skb_cow_head(skb, LL_RESERVED_SPACE(dst->dev));
288 if (unlikely(err))
289 return err;
290
David Lebrun6c8702c2016-11-08 14:57:41 +0100291 return dst_input(skb);
292}
293
Wei Yongjunbb4005b2017-02-06 16:15:05 +0000294static int seg6_output(struct net *net, struct sock *sk, struct sk_buff *skb)
David Lebrun6c8702c2016-11-08 14:57:41 +0100295{
296 struct dst_entry *orig_dst = skb_dst(skb);
297 struct dst_entry *dst = NULL;
298 struct seg6_lwt *slwt;
299 int err = -EINVAL;
300
301 err = seg6_do_srh(skb);
302 if (unlikely(err))
303 goto drop;
304
305 slwt = seg6_lwt_lwtunnel(orig_dst->lwtstate);
306
David Lebrunfa795812017-01-12 21:30:01 +0100307 preempt_disable();
David Lebrun6c8702c2016-11-08 14:57:41 +0100308 dst = dst_cache_get(&slwt->cache);
David Lebrunfa795812017-01-12 21:30:01 +0100309 preempt_enable();
David Lebrun6c8702c2016-11-08 14:57:41 +0100310
311 if (unlikely(!dst)) {
312 struct ipv6hdr *hdr = ipv6_hdr(skb);
313 struct flowi6 fl6;
314
315 fl6.daddr = hdr->daddr;
316 fl6.saddr = hdr->saddr;
317 fl6.flowlabel = ip6_flowinfo(hdr);
318 fl6.flowi6_mark = skb->mark;
319 fl6.flowi6_proto = hdr->nexthdr;
320
321 dst = ip6_route_output(net, NULL, &fl6);
322 if (dst->error) {
323 err = dst->error;
324 dst_release(dst);
325 goto drop;
326 }
327
David Lebrunfa795812017-01-12 21:30:01 +0100328 preempt_disable();
David Lebrun6c8702c2016-11-08 14:57:41 +0100329 dst_cache_set_ip6(&slwt->cache, dst, &fl6.saddr);
David Lebrunfa795812017-01-12 21:30:01 +0100330 preempt_enable();
David Lebrun6c8702c2016-11-08 14:57:41 +0100331 }
332
333 skb_dst_drop(skb);
334 skb_dst_set(skb, dst);
335
David Lebrunaf3b5152017-04-16 12:27:14 +0200336 err = skb_cow_head(skb, LL_RESERVED_SPACE(dst->dev));
337 if (unlikely(err))
338 goto drop;
339
David Lebrun6c8702c2016-11-08 14:57:41 +0100340 return dst_output(net, sk, skb);
341drop:
342 kfree_skb(skb);
343 return err;
344}
345
David Ahern30357d72017-01-30 12:07:37 -0800346static int seg6_build_state(struct nlattr *nla,
David Lebrun6c8702c2016-11-08 14:57:41 +0100347 unsigned int family, const void *cfg,
David Ahern9ae28722017-05-27 16:19:28 -0600348 struct lwtunnel_state **ts,
349 struct netlink_ext_ack *extack)
David Lebrun6c8702c2016-11-08 14:57:41 +0100350{
351 struct nlattr *tb[SEG6_IPTUNNEL_MAX + 1];
352 struct seg6_iptunnel_encap *tuninfo;
353 struct lwtunnel_state *newts;
354 int tuninfo_len, min_size;
355 struct seg6_lwt *slwt;
356 int err;
357
David Lebrun32d99d02017-08-25 09:56:44 +0200358 if (family != AF_INET && family != AF_INET6)
359 return -EINVAL;
360
David Lebrun6c8702c2016-11-08 14:57:41 +0100361 err = nla_parse_nested(tb, SEG6_IPTUNNEL_MAX, nla,
David Ahern9ae28722017-05-27 16:19:28 -0600362 seg6_iptunnel_policy, extack);
David Lebrun6c8702c2016-11-08 14:57:41 +0100363
364 if (err < 0)
365 return err;
366
367 if (!tb[SEG6_IPTUNNEL_SRH])
368 return -EINVAL;
369
370 tuninfo = nla_data(tb[SEG6_IPTUNNEL_SRH]);
371 tuninfo_len = nla_len(tb[SEG6_IPTUNNEL_SRH]);
372
373 /* tuninfo must contain at least the iptunnel encap structure,
374 * the SRH and one segment
375 */
376 min_size = sizeof(*tuninfo) + sizeof(struct ipv6_sr_hdr) +
377 sizeof(struct in6_addr);
378 if (tuninfo_len < min_size)
379 return -EINVAL;
380
381 switch (tuninfo->mode) {
David Lebrun6c8702c2016-11-08 14:57:41 +0100382 case SEG6_IPTUN_MODE_INLINE:
David Lebrun32d99d02017-08-25 09:56:44 +0200383 if (family != AF_INET6)
384 return -EINVAL;
385
David Lebrun6c8702c2016-11-08 14:57:41 +0100386 break;
David Lebrun6c8702c2016-11-08 14:57:41 +0100387 case SEG6_IPTUN_MODE_ENCAP:
388 break;
389 default:
390 return -EINVAL;
391 }
392
393 /* verify that SRH is consistent */
394 if (!seg6_validate_srh(tuninfo->srh, tuninfo_len - sizeof(*tuninfo)))
395 return -EINVAL;
396
397 newts = lwtunnel_state_alloc(tuninfo_len + sizeof(*slwt));
398 if (!newts)
399 return -ENOMEM;
400
401 slwt = seg6_lwt_lwtunnel(newts);
402
David Lebrun6c8702c2016-11-08 14:57:41 +0100403 err = dst_cache_init(&slwt->cache, GFP_KERNEL);
404 if (err) {
405 kfree(newts);
406 return err;
407 }
David Lebrun6c8702c2016-11-08 14:57:41 +0100408
409 memcpy(&slwt->tuninfo, tuninfo, tuninfo_len);
410
411 newts->type = LWTUNNEL_ENCAP_SEG6;
412 newts->flags |= LWTUNNEL_STATE_OUTPUT_REDIRECT |
413 LWTUNNEL_STATE_INPUT_REDIRECT;
414 newts->headroom = seg6_lwt_headroom(tuninfo);
415
416 *ts = newts;
417
418 return 0;
419}
420
David Lebrun6c8702c2016-11-08 14:57:41 +0100421static void seg6_destroy_state(struct lwtunnel_state *lwt)
422{
423 dst_cache_destroy(&seg6_lwt_lwtunnel(lwt)->cache);
424}
David Lebrun6c8702c2016-11-08 14:57:41 +0100425
426static int seg6_fill_encap_info(struct sk_buff *skb,
427 struct lwtunnel_state *lwtstate)
428{
429 struct seg6_iptunnel_encap *tuninfo = seg6_encap_lwtunnel(lwtstate);
430
431 if (nla_put_srh(skb, SEG6_IPTUNNEL_SRH, tuninfo))
432 return -EMSGSIZE;
433
434 return 0;
435}
436
437static int seg6_encap_nlsize(struct lwtunnel_state *lwtstate)
438{
439 struct seg6_iptunnel_encap *tuninfo = seg6_encap_lwtunnel(lwtstate);
440
441 return nla_total_size(SEG6_IPTUN_ENCAP_SIZE(tuninfo));
442}
443
444static int seg6_encap_cmp(struct lwtunnel_state *a, struct lwtunnel_state *b)
445{
446 struct seg6_iptunnel_encap *a_hdr = seg6_encap_lwtunnel(a);
447 struct seg6_iptunnel_encap *b_hdr = seg6_encap_lwtunnel(b);
448 int len = SEG6_IPTUN_ENCAP_SIZE(a_hdr);
449
450 if (len != SEG6_IPTUN_ENCAP_SIZE(b_hdr))
451 return 1;
452
453 return memcmp(a_hdr, b_hdr, len);
454}
455
456static const struct lwtunnel_encap_ops seg6_iptun_ops = {
457 .build_state = seg6_build_state,
David Lebrun6c8702c2016-11-08 14:57:41 +0100458 .destroy_state = seg6_destroy_state,
David Lebrun6c8702c2016-11-08 14:57:41 +0100459 .output = seg6_output,
460 .input = seg6_input,
461 .fill_encap = seg6_fill_encap_info,
462 .get_encap_size = seg6_encap_nlsize,
463 .cmp_encap = seg6_encap_cmp,
Robert Shearman88ff7332017-01-24 16:26:47 +0000464 .owner = THIS_MODULE,
David Lebrun6c8702c2016-11-08 14:57:41 +0100465};
466
467int __init seg6_iptunnel_init(void)
468{
469 return lwtunnel_encap_add_ops(&seg6_iptun_ops, LWTUNNEL_ENCAP_SEG6);
470}
471
472void seg6_iptunnel_exit(void)
473{
474 lwtunnel_encap_del_ops(&seg6_iptun_ops, LWTUNNEL_ENCAP_SEG6);
475}