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/lwtunnel.h>
20 #include <net/netevent.h>
21 #include <net/netns/generic.h>
22 #include <net/ip6_fib.h>
23 #include <net/route.h>
25 #include <linux/seg6.h>
26 #include <linux/seg6_iptunnel.h>
27 #include <net/addrconf.h>
28 #include <net/ip6_route.h>
29 #include <net/dst_cache.h>
30 #ifdef CONFIG_IPV6_SEG6_HMAC
31 #include <net/seg6_hmac.h>
35 struct dst_cache cache
;
36 struct seg6_iptunnel_encap tuninfo
[0];
39 static inline struct seg6_lwt
*seg6_lwt_lwtunnel(struct lwtunnel_state
*lwt
)
41 return (struct seg6_lwt
*)lwt
->data
;
44 static inline struct seg6_iptunnel_encap
*
45 seg6_encap_lwtunnel(struct lwtunnel_state
*lwt
)
47 return seg6_lwt_lwtunnel(lwt
)->tuninfo
;
50 static const struct nla_policy seg6_iptunnel_policy
[SEG6_IPTUNNEL_MAX
+ 1] = {
51 [SEG6_IPTUNNEL_SRH
] = { .type
= NLA_BINARY
},
54 static int nla_put_srh(struct sk_buff
*skb
, int attrtype
,
55 struct seg6_iptunnel_encap
*tuninfo
)
57 struct seg6_iptunnel_encap
*data
;
61 len
= SEG6_IPTUN_ENCAP_SIZE(tuninfo
);
63 nla
= nla_reserve(skb
, attrtype
, len
);
68 memcpy(data
, tuninfo
, len
);
73 static void set_tun_src(struct net
*net
, struct net_device
*dev
,
74 struct in6_addr
*daddr
, struct in6_addr
*saddr
)
76 struct seg6_pernet_data
*sdata
= seg6_pernet(net
);
77 struct in6_addr
*tun_src
;
81 tun_src
= rcu_dereference(sdata
->tun_src
);
83 if (!ipv6_addr_any(tun_src
)) {
84 memcpy(saddr
, tun_src
, sizeof(struct in6_addr
));
86 ipv6_dev_get_saddr(net
, dev
, daddr
, IPV6_PREFER_SRC_PUBLIC
,
93 /* encapsulate an IPv6 packet within an outer IPv6 header with a given SRH */
94 static int seg6_do_srh_encap(struct sk_buff
*skb
, struct ipv6_sr_hdr
*osrh
)
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
;
101 hdrlen
= (osrh
->hdrlen
+ 1) << 3;
102 tot_len
= hdrlen
+ sizeof(*hdr
);
104 err
= skb_cow_head(skb
, tot_len
);
108 inner_hdr
= ipv6_hdr(skb
);
110 skb_push(skb
, tot_len
);
111 skb_reset_network_header(skb
);
112 skb_mac_header_rebuild(skb
);
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
119 ip6_flow_hdr(hdr
, ip6_tclass(ip6_flowinfo(inner_hdr
)),
120 ip6_flowlabel(inner_hdr
));
121 hdr
->hop_limit
= inner_hdr
->hop_limit
;
122 hdr
->nexthdr
= NEXTHDR_ROUTING
;
124 isrh
= (void *)hdr
+ sizeof(*hdr
);
125 memcpy(isrh
, osrh
, hdrlen
);
127 isrh
->nexthdr
= NEXTHDR_IPV6
;
129 hdr
->daddr
= isrh
->segments
[isrh
->first_segment
];
130 set_tun_src(net
, skb
->dev
, &hdr
->daddr
, &hdr
->saddr
);
132 #ifdef CONFIG_IPV6_SEG6_HMAC
133 if (sr_has_hmac(isrh
)) {
134 err
= seg6_push_hmac(net
, &hdr
->saddr
, isrh
);
140 skb_postpush_rcsum(skb
, hdr
, tot_len
);
145 /* insert an SRH within an IPv6 packet, just after the IPv6 header */
146 #ifdef CONFIG_IPV6_SEG6_INLINE
147 static int seg6_do_srh_inline(struct sk_buff
*skb
, struct ipv6_sr_hdr
*osrh
)
149 struct ipv6hdr
*hdr
, *oldhdr
;
150 struct ipv6_sr_hdr
*isrh
;
153 hdrlen
= (osrh
->hdrlen
+ 1) << 3;
155 err
= skb_cow_head(skb
, hdrlen
);
159 oldhdr
= ipv6_hdr(skb
);
161 skb_pull(skb
, sizeof(struct ipv6hdr
));
162 skb_postpull_rcsum(skb
, skb_network_header(skb
),
163 sizeof(struct ipv6hdr
));
165 skb_push(skb
, sizeof(struct ipv6hdr
) + hdrlen
);
166 skb_reset_network_header(skb
);
167 skb_mac_header_rebuild(skb
);
171 memmove(hdr
, oldhdr
, sizeof(*hdr
));
173 isrh
= (void *)hdr
+ sizeof(*hdr
);
174 memcpy(isrh
, osrh
, hdrlen
);
176 isrh
->nexthdr
= hdr
->nexthdr
;
177 hdr
->nexthdr
= NEXTHDR_ROUTING
;
179 isrh
->segments
[0] = hdr
->daddr
;
180 hdr
->daddr
= isrh
->segments
[isrh
->first_segment
];
182 #ifdef CONFIG_IPV6_SEG6_HMAC
183 if (sr_has_hmac(isrh
)) {
184 struct net
*net
= dev_net(skb_dst(skb
)->dev
);
186 err
= seg6_push_hmac(net
, &hdr
->saddr
, isrh
);
192 skb_postpush_rcsum(skb
, hdr
, sizeof(struct ipv6hdr
) + hdrlen
);
198 static int seg6_do_srh(struct sk_buff
*skb
)
200 struct dst_entry
*dst
= skb_dst(skb
);
201 struct seg6_iptunnel_encap
*tinfo
;
204 tinfo
= seg6_encap_lwtunnel(dst
->lwtstate
);
206 if (likely(!skb
->encapsulation
)) {
207 skb_reset_inner_headers(skb
);
208 skb
->encapsulation
= 1;
211 switch (tinfo
->mode
) {
212 #ifdef CONFIG_IPV6_SEG6_INLINE
213 case SEG6_IPTUN_MODE_INLINE
:
214 err
= seg6_do_srh_inline(skb
, tinfo
->srh
);
215 skb_reset_inner_headers(skb
);
218 case SEG6_IPTUN_MODE_ENCAP
:
219 err
= seg6_do_srh_encap(skb
, tinfo
->srh
);
226 ipv6_hdr(skb
)->payload_len
= htons(skb
->len
- sizeof(struct ipv6hdr
));
227 skb_set_transport_header(skb
, sizeof(struct ipv6hdr
));
229 skb_set_inner_protocol(skb
, skb
->protocol
);
234 static int seg6_input(struct sk_buff
*skb
)
236 struct dst_entry
*orig_dst
= skb_dst(skb
);
237 struct dst_entry
*dst
= NULL
;
238 struct seg6_lwt
*slwt
;
241 err
= seg6_do_srh(skb
);
247 slwt
= seg6_lwt_lwtunnel(orig_dst
->lwtstate
);
250 dst
= dst_cache_get(&slwt
->cache
);
256 ip6_route_input(skb
);
260 dst_cache_set_ip6(&slwt
->cache
, dst
,
261 &ipv6_hdr(skb
)->saddr
);
265 skb_dst_set(skb
, dst
);
268 err
= skb_cow_head(skb
, LL_RESERVED_SPACE(dst
->dev
));
272 return dst_input(skb
);
275 static int seg6_output(struct net
*net
, struct sock
*sk
, struct sk_buff
*skb
)
277 struct dst_entry
*orig_dst
= skb_dst(skb
);
278 struct dst_entry
*dst
= NULL
;
279 struct seg6_lwt
*slwt
;
282 err
= seg6_do_srh(skb
);
286 slwt
= seg6_lwt_lwtunnel(orig_dst
->lwtstate
);
289 dst
= dst_cache_get(&slwt
->cache
);
292 if (unlikely(!dst
)) {
293 struct ipv6hdr
*hdr
= ipv6_hdr(skb
);
296 fl6
.daddr
= hdr
->daddr
;
297 fl6
.saddr
= hdr
->saddr
;
298 fl6
.flowlabel
= ip6_flowinfo(hdr
);
299 fl6
.flowi6_mark
= skb
->mark
;
300 fl6
.flowi6_proto
= hdr
->nexthdr
;
302 dst
= ip6_route_output(net
, NULL
, &fl6
);
310 dst_cache_set_ip6(&slwt
->cache
, dst
, &fl6
.saddr
);
315 skb_dst_set(skb
, dst
);
317 err
= skb_cow_head(skb
, LL_RESERVED_SPACE(dst
->dev
));
321 return dst_output(net
, sk
, skb
);
327 static int seg6_build_state(struct nlattr
*nla
,
328 unsigned int family
, const void *cfg
,
329 struct lwtunnel_state
**ts
,
330 struct netlink_ext_ack
*extack
)
332 struct nlattr
*tb
[SEG6_IPTUNNEL_MAX
+ 1];
333 struct seg6_iptunnel_encap
*tuninfo
;
334 struct lwtunnel_state
*newts
;
335 int tuninfo_len
, min_size
;
336 struct seg6_lwt
*slwt
;
339 err
= nla_parse_nested(tb
, SEG6_IPTUNNEL_MAX
, nla
,
340 seg6_iptunnel_policy
, extack
);
345 if (!tb
[SEG6_IPTUNNEL_SRH
])
348 tuninfo
= nla_data(tb
[SEG6_IPTUNNEL_SRH
]);
349 tuninfo_len
= nla_len(tb
[SEG6_IPTUNNEL_SRH
]);
351 /* tuninfo must contain at least the iptunnel encap structure,
352 * the SRH and one segment
354 min_size
= sizeof(*tuninfo
) + sizeof(struct ipv6_sr_hdr
) +
355 sizeof(struct in6_addr
);
356 if (tuninfo_len
< min_size
)
359 switch (tuninfo
->mode
) {
360 #ifdef CONFIG_IPV6_SEG6_INLINE
361 case SEG6_IPTUN_MODE_INLINE
:
364 case SEG6_IPTUN_MODE_ENCAP
:
370 /* verify that SRH is consistent */
371 if (!seg6_validate_srh(tuninfo
->srh
, tuninfo_len
- sizeof(*tuninfo
)))
374 newts
= lwtunnel_state_alloc(tuninfo_len
+ sizeof(*slwt
));
378 slwt
= seg6_lwt_lwtunnel(newts
);
380 err
= dst_cache_init(&slwt
->cache
, GFP_KERNEL
);
386 memcpy(&slwt
->tuninfo
, tuninfo
, tuninfo_len
);
388 newts
->type
= LWTUNNEL_ENCAP_SEG6
;
389 newts
->flags
|= LWTUNNEL_STATE_OUTPUT_REDIRECT
|
390 LWTUNNEL_STATE_INPUT_REDIRECT
;
391 newts
->headroom
= seg6_lwt_headroom(tuninfo
);
398 static void seg6_destroy_state(struct lwtunnel_state
*lwt
)
400 dst_cache_destroy(&seg6_lwt_lwtunnel(lwt
)->cache
);
403 static int seg6_fill_encap_info(struct sk_buff
*skb
,
404 struct lwtunnel_state
*lwtstate
)
406 struct seg6_iptunnel_encap
*tuninfo
= seg6_encap_lwtunnel(lwtstate
);
408 if (nla_put_srh(skb
, SEG6_IPTUNNEL_SRH
, tuninfo
))
414 static int seg6_encap_nlsize(struct lwtunnel_state
*lwtstate
)
416 struct seg6_iptunnel_encap
*tuninfo
= seg6_encap_lwtunnel(lwtstate
);
418 return nla_total_size(SEG6_IPTUN_ENCAP_SIZE(tuninfo
));
421 static int seg6_encap_cmp(struct lwtunnel_state
*a
, struct lwtunnel_state
*b
)
423 struct seg6_iptunnel_encap
*a_hdr
= seg6_encap_lwtunnel(a
);
424 struct seg6_iptunnel_encap
*b_hdr
= seg6_encap_lwtunnel(b
);
425 int len
= SEG6_IPTUN_ENCAP_SIZE(a_hdr
);
427 if (len
!= SEG6_IPTUN_ENCAP_SIZE(b_hdr
))
430 return memcmp(a_hdr
, b_hdr
, len
);
433 static const struct lwtunnel_encap_ops seg6_iptun_ops
= {
434 .build_state
= seg6_build_state
,
435 .destroy_state
= seg6_destroy_state
,
436 .output
= seg6_output
,
438 .fill_encap
= seg6_fill_encap_info
,
439 .get_encap_size
= seg6_encap_nlsize
,
440 .cmp_encap
= seg6_encap_cmp
,
441 .owner
= THIS_MODULE
,
444 int __init
seg6_iptunnel_init(void)
446 return lwtunnel_encap_add_ops(&seg6_iptun_ops
, LWTUNNEL_ENCAP_SEG6
);
449 void seg6_iptunnel_exit(void)
451 lwtunnel_encap_del_ops(&seg6_iptun_ops
, LWTUNNEL_ENCAP_SEG6
);