2 * SR-IPv6 implementation
5 * David Lebrun <david.lebrun@uclouvain.be>
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.
14 #include <linux/types.h>
15 #include <linux/skbuff.h>
16 #include <linux/net.h>
17 #include <linux/module.h>
19 #include <net/ip_tunnels.h>
20 #include <net/lwtunnel.h>
21 #include <net/netevent.h>
22 #include <net/netns/generic.h>
23 #include <net/ip6_fib.h>
24 #include <net/route.h>
26 #include <linux/seg6.h>
27 #include <linux/seg6_iptunnel.h>
28 #include <net/addrconf.h>
29 #include <net/ip6_route.h>
30 #include <net/dst_cache.h>
31 #ifdef CONFIG_IPV6_SEG6_HMAC
32 #include <net/seg6_hmac.h>
36 struct dst_cache cache
;
37 struct seg6_iptunnel_encap tuninfo
[0];
40 static inline struct seg6_lwt
*seg6_lwt_lwtunnel(struct lwtunnel_state
*lwt
)
42 return (struct seg6_lwt
*)lwt
->data
;
45 static inline struct seg6_iptunnel_encap
*
46 seg6_encap_lwtunnel(struct lwtunnel_state
*lwt
)
48 return seg6_lwt_lwtunnel(lwt
)->tuninfo
;
51 static const struct nla_policy seg6_iptunnel_policy
[SEG6_IPTUNNEL_MAX
+ 1] = {
52 [SEG6_IPTUNNEL_SRH
] = { .type
= NLA_BINARY
},
55 static int nla_put_srh(struct sk_buff
*skb
, int attrtype
,
56 struct seg6_iptunnel_encap
*tuninfo
)
58 struct seg6_iptunnel_encap
*data
;
62 len
= SEG6_IPTUN_ENCAP_SIZE(tuninfo
);
64 nla
= nla_reserve(skb
, attrtype
, len
);
69 memcpy(data
, tuninfo
, len
);
74 static void set_tun_src(struct net
*net
, struct net_device
*dev
,
75 struct in6_addr
*daddr
, struct in6_addr
*saddr
)
77 struct seg6_pernet_data
*sdata
= seg6_pernet(net
);
78 struct in6_addr
*tun_src
;
82 tun_src
= rcu_dereference(sdata
->tun_src
);
84 if (!ipv6_addr_any(tun_src
)) {
85 memcpy(saddr
, tun_src
, sizeof(struct in6_addr
));
87 ipv6_dev_get_saddr(net
, dev
, daddr
, IPV6_PREFER_SRC_PUBLIC
,
94 /* encapsulate an IPv6 packet within an outer IPv6 header with a given SRH */
95 int seg6_do_srh_encap(struct sk_buff
*skb
, struct ipv6_sr_hdr
*osrh
, int proto
)
97 struct dst_entry
*dst
= skb_dst(skb
);
98 struct net
*net
= dev_net(dst
->dev
);
99 struct ipv6hdr
*hdr
, *inner_hdr
;
100 struct ipv6_sr_hdr
*isrh
;
101 int hdrlen
, tot_len
, err
;
103 hdrlen
= (osrh
->hdrlen
+ 1) << 3;
104 tot_len
= hdrlen
+ sizeof(*hdr
);
106 err
= skb_cow_head(skb
, tot_len
);
110 inner_hdr
= ipv6_hdr(skb
);
112 skb_push(skb
, tot_len
);
113 skb_reset_network_header(skb
);
114 skb_mac_header_rebuild(skb
);
117 /* inherit tc, flowlabel and hlim
118 * hlim will be decremented in ip6_forward() afterwards and
119 * decapsulation will overwrite inner hlim with outer hlim
122 if (skb
->protocol
== htons(ETH_P_IPV6
)) {
123 ip6_flow_hdr(hdr
, ip6_tclass(ip6_flowinfo(inner_hdr
)),
124 ip6_flowlabel(inner_hdr
));
125 hdr
->hop_limit
= inner_hdr
->hop_limit
;
127 ip6_flow_hdr(hdr
, 0, 0);
128 hdr
->hop_limit
= ip6_dst_hoplimit(skb_dst(skb
));
131 hdr
->nexthdr
= NEXTHDR_ROUTING
;
133 isrh
= (void *)hdr
+ sizeof(*hdr
);
134 memcpy(isrh
, osrh
, hdrlen
);
136 isrh
->nexthdr
= proto
;
138 hdr
->daddr
= isrh
->segments
[isrh
->first_segment
];
139 set_tun_src(net
, dst
->dev
, &hdr
->daddr
, &hdr
->saddr
);
141 #ifdef CONFIG_IPV6_SEG6_HMAC
142 if (sr_has_hmac(isrh
)) {
143 err
= seg6_push_hmac(net
, &hdr
->saddr
, isrh
);
149 skb_postpush_rcsum(skb
, hdr
, tot_len
);
153 EXPORT_SYMBOL_GPL(seg6_do_srh_encap
);
155 /* insert an SRH within an IPv6 packet, just after the IPv6 header */
156 int seg6_do_srh_inline(struct sk_buff
*skb
, struct ipv6_sr_hdr
*osrh
)
158 struct ipv6hdr
*hdr
, *oldhdr
;
159 struct ipv6_sr_hdr
*isrh
;
162 hdrlen
= (osrh
->hdrlen
+ 1) << 3;
164 err
= skb_cow_head(skb
, hdrlen
);
168 oldhdr
= ipv6_hdr(skb
);
170 skb_pull(skb
, sizeof(struct ipv6hdr
));
171 skb_postpull_rcsum(skb
, skb_network_header(skb
),
172 sizeof(struct ipv6hdr
));
174 skb_push(skb
, sizeof(struct ipv6hdr
) + hdrlen
);
175 skb_reset_network_header(skb
);
176 skb_mac_header_rebuild(skb
);
180 memmove(hdr
, oldhdr
, sizeof(*hdr
));
182 isrh
= (void *)hdr
+ sizeof(*hdr
);
183 memcpy(isrh
, osrh
, hdrlen
);
185 isrh
->nexthdr
= hdr
->nexthdr
;
186 hdr
->nexthdr
= NEXTHDR_ROUTING
;
188 isrh
->segments
[0] = hdr
->daddr
;
189 hdr
->daddr
= isrh
->segments
[isrh
->first_segment
];
191 #ifdef CONFIG_IPV6_SEG6_HMAC
192 if (sr_has_hmac(isrh
)) {
193 struct net
*net
= dev_net(skb_dst(skb
)->dev
);
195 err
= seg6_push_hmac(net
, &hdr
->saddr
, isrh
);
201 skb_postpush_rcsum(skb
, hdr
, sizeof(struct ipv6hdr
) + hdrlen
);
205 EXPORT_SYMBOL_GPL(seg6_do_srh_inline
);
207 static int seg6_do_srh(struct sk_buff
*skb
)
209 struct dst_entry
*dst
= skb_dst(skb
);
210 struct seg6_iptunnel_encap
*tinfo
;
213 tinfo
= seg6_encap_lwtunnel(dst
->lwtstate
);
215 switch (tinfo
->mode
) {
216 case SEG6_IPTUN_MODE_INLINE
:
217 if (skb
->protocol
!= htons(ETH_P_IPV6
))
220 err
= seg6_do_srh_inline(skb
, tinfo
->srh
);
224 case SEG6_IPTUN_MODE_ENCAP
:
225 err
= iptunnel_handle_offloads(skb
, SKB_GSO_IPXIP6
);
229 if (skb
->protocol
== htons(ETH_P_IPV6
))
230 proto
= IPPROTO_IPV6
;
231 else if (skb
->protocol
== htons(ETH_P_IP
))
232 proto
= IPPROTO_IPIP
;
236 err
= seg6_do_srh_encap(skb
, tinfo
->srh
, proto
);
240 skb_set_inner_transport_header(skb
, skb_transport_offset(skb
));
241 skb_set_inner_protocol(skb
, skb
->protocol
);
242 skb
->protocol
= htons(ETH_P_IPV6
);
244 case SEG6_IPTUN_MODE_L2ENCAP
:
245 if (!skb_mac_header_was_set(skb
))
248 if (pskb_expand_head(skb
, skb
->mac_len
, 0, GFP_ATOMIC
) < 0)
251 skb_mac_header_rebuild(skb
);
252 skb_push(skb
, skb
->mac_len
);
254 err
= seg6_do_srh_encap(skb
, tinfo
->srh
, NEXTHDR_NONE
);
258 skb
->protocol
= htons(ETH_P_IPV6
);
262 ipv6_hdr(skb
)->payload_len
= htons(skb
->len
- sizeof(struct ipv6hdr
));
263 skb_set_transport_header(skb
, sizeof(struct ipv6hdr
));
268 static int seg6_input(struct sk_buff
*skb
)
270 struct dst_entry
*orig_dst
= skb_dst(skb
);
271 struct dst_entry
*dst
= NULL
;
272 struct seg6_lwt
*slwt
;
275 err
= seg6_do_srh(skb
);
281 slwt
= seg6_lwt_lwtunnel(orig_dst
->lwtstate
);
284 dst
= dst_cache_get(&slwt
->cache
);
290 ip6_route_input(skb
);
294 dst_cache_set_ip6(&slwt
->cache
, dst
,
295 &ipv6_hdr(skb
)->saddr
);
299 skb_dst_set(skb
, dst
);
302 err
= skb_cow_head(skb
, LL_RESERVED_SPACE(dst
->dev
));
306 return dst_input(skb
);
309 static int seg6_output(struct net
*net
, struct sock
*sk
, struct sk_buff
*skb
)
311 struct dst_entry
*orig_dst
= skb_dst(skb
);
312 struct dst_entry
*dst
= NULL
;
313 struct seg6_lwt
*slwt
;
316 err
= seg6_do_srh(skb
);
320 slwt
= seg6_lwt_lwtunnel(orig_dst
->lwtstate
);
323 dst
= dst_cache_get(&slwt
->cache
);
326 if (unlikely(!dst
)) {
327 struct ipv6hdr
*hdr
= ipv6_hdr(skb
);
330 fl6
.daddr
= hdr
->daddr
;
331 fl6
.saddr
= hdr
->saddr
;
332 fl6
.flowlabel
= ip6_flowinfo(hdr
);
333 fl6
.flowi6_mark
= skb
->mark
;
334 fl6
.flowi6_proto
= hdr
->nexthdr
;
336 dst
= ip6_route_output(net
, NULL
, &fl6
);
344 dst_cache_set_ip6(&slwt
->cache
, dst
, &fl6
.saddr
);
349 skb_dst_set(skb
, dst
);
351 err
= skb_cow_head(skb
, LL_RESERVED_SPACE(dst
->dev
));
355 return dst_output(net
, sk
, skb
);
361 static int seg6_build_state(struct nlattr
*nla
,
362 unsigned int family
, const void *cfg
,
363 struct lwtunnel_state
**ts
,
364 struct netlink_ext_ack
*extack
)
366 struct nlattr
*tb
[SEG6_IPTUNNEL_MAX
+ 1];
367 struct seg6_iptunnel_encap
*tuninfo
;
368 struct lwtunnel_state
*newts
;
369 int tuninfo_len
, min_size
;
370 struct seg6_lwt
*slwt
;
373 if (family
!= AF_INET
&& family
!= AF_INET6
)
376 err
= nla_parse_nested(tb
, SEG6_IPTUNNEL_MAX
, nla
,
377 seg6_iptunnel_policy
, extack
);
382 if (!tb
[SEG6_IPTUNNEL_SRH
])
385 tuninfo
= nla_data(tb
[SEG6_IPTUNNEL_SRH
]);
386 tuninfo_len
= nla_len(tb
[SEG6_IPTUNNEL_SRH
]);
388 /* tuninfo must contain at least the iptunnel encap structure,
389 * the SRH and one segment
391 min_size
= sizeof(*tuninfo
) + sizeof(struct ipv6_sr_hdr
) +
392 sizeof(struct in6_addr
);
393 if (tuninfo_len
< min_size
)
396 switch (tuninfo
->mode
) {
397 case SEG6_IPTUN_MODE_INLINE
:
398 if (family
!= AF_INET6
)
402 case SEG6_IPTUN_MODE_ENCAP
:
404 case SEG6_IPTUN_MODE_L2ENCAP
:
410 /* verify that SRH is consistent */
411 if (!seg6_validate_srh(tuninfo
->srh
, tuninfo_len
- sizeof(*tuninfo
)))
414 newts
= lwtunnel_state_alloc(tuninfo_len
+ sizeof(*slwt
));
418 slwt
= seg6_lwt_lwtunnel(newts
);
420 err
= dst_cache_init(&slwt
->cache
, GFP_ATOMIC
);
426 memcpy(&slwt
->tuninfo
, tuninfo
, tuninfo_len
);
428 newts
->type
= LWTUNNEL_ENCAP_SEG6
;
429 newts
->flags
|= LWTUNNEL_STATE_INPUT_REDIRECT
;
431 if (tuninfo
->mode
!= SEG6_IPTUN_MODE_L2ENCAP
)
432 newts
->flags
|= LWTUNNEL_STATE_OUTPUT_REDIRECT
;
434 newts
->headroom
= seg6_lwt_headroom(tuninfo
);
441 static void seg6_destroy_state(struct lwtunnel_state
*lwt
)
443 dst_cache_destroy(&seg6_lwt_lwtunnel(lwt
)->cache
);
446 static int seg6_fill_encap_info(struct sk_buff
*skb
,
447 struct lwtunnel_state
*lwtstate
)
449 struct seg6_iptunnel_encap
*tuninfo
= seg6_encap_lwtunnel(lwtstate
);
451 if (nla_put_srh(skb
, SEG6_IPTUNNEL_SRH
, tuninfo
))
457 static int seg6_encap_nlsize(struct lwtunnel_state
*lwtstate
)
459 struct seg6_iptunnel_encap
*tuninfo
= seg6_encap_lwtunnel(lwtstate
);
461 return nla_total_size(SEG6_IPTUN_ENCAP_SIZE(tuninfo
));
464 static int seg6_encap_cmp(struct lwtunnel_state
*a
, struct lwtunnel_state
*b
)
466 struct seg6_iptunnel_encap
*a_hdr
= seg6_encap_lwtunnel(a
);
467 struct seg6_iptunnel_encap
*b_hdr
= seg6_encap_lwtunnel(b
);
468 int len
= SEG6_IPTUN_ENCAP_SIZE(a_hdr
);
470 if (len
!= SEG6_IPTUN_ENCAP_SIZE(b_hdr
))
473 return memcmp(a_hdr
, b_hdr
, len
);
476 static const struct lwtunnel_encap_ops seg6_iptun_ops
= {
477 .build_state
= seg6_build_state
,
478 .destroy_state
= seg6_destroy_state
,
479 .output
= seg6_output
,
481 .fill_encap
= seg6_fill_encap_info
,
482 .get_encap_size
= seg6_encap_nlsize
,
483 .cmp_encap
= seg6_encap_cmp
,
484 .owner
= THIS_MODULE
,
487 int __init
seg6_iptunnel_init(void)
489 return lwtunnel_encap_add_ops(&seg6_iptun_ops
, LWTUNNEL_ENCAP_SEG6
);
492 void seg6_iptunnel_exit(void)
494 lwtunnel_encap_del_ops(&seg6_iptun_ops
, LWTUNNEL_ENCAP_SEG6
);