blob: ab7f124ff5d7e8a69e84fae0c72c581a716266f5 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Lebrun6c8702c2016-11-08 14:57:41 +01002/*
3 * SR-IPv6 implementation
4 *
5 * Author:
6 * David Lebrun <david.lebrun@uclouvain.be>
David Lebrun6c8702c2016-11-08 14:57:41 +01007 */
8
9#include <linux/types.h>
10#include <linux/skbuff.h>
11#include <linux/net.h>
12#include <linux/module.h>
13#include <net/ip.h>
David Lebrun5807b222018-03-29 17:59:36 +010014#include <net/ip_tunnels.h>
David Lebrun6c8702c2016-11-08 14:57:41 +010015#include <net/lwtunnel.h>
16#include <net/netevent.h>
17#include <net/netns/generic.h>
18#include <net/ip6_fib.h>
19#include <net/route.h>
20#include <net/seg6.h>
21#include <linux/seg6.h>
22#include <linux/seg6_iptunnel.h>
23#include <net/addrconf.h>
24#include <net/ip6_route.h>
David Lebrun6c8702c2016-11-08 14:57:41 +010025#include <net/dst_cache.h>
David Lebrun9baee832016-11-08 14:59:19 +010026#ifdef CONFIG_IPV6_SEG6_HMAC
27#include <net/seg6_hmac.h>
28#endif
David Lebrun6c8702c2016-11-08 14:57:41 +010029
30struct seg6_lwt {
David Lebrun6c8702c2016-11-08 14:57:41 +010031 struct dst_cache cache;
David Lebrun6c8702c2016-11-08 14:57:41 +010032 struct seg6_iptunnel_encap tuninfo[0];
33};
34
35static inline struct seg6_lwt *seg6_lwt_lwtunnel(struct lwtunnel_state *lwt)
36{
37 return (struct seg6_lwt *)lwt->data;
38}
39
40static inline struct seg6_iptunnel_encap *
41seg6_encap_lwtunnel(struct lwtunnel_state *lwt)
42{
43 return seg6_lwt_lwtunnel(lwt)->tuninfo;
44}
45
46static const struct nla_policy seg6_iptunnel_policy[SEG6_IPTUNNEL_MAX + 1] = {
47 [SEG6_IPTUNNEL_SRH] = { .type = NLA_BINARY },
48};
49
Wei Yongjunbb4005b2017-02-06 16:15:05 +000050static int nla_put_srh(struct sk_buff *skb, int attrtype,
51 struct seg6_iptunnel_encap *tuninfo)
David Lebrun6c8702c2016-11-08 14:57:41 +010052{
53 struct seg6_iptunnel_encap *data;
54 struct nlattr *nla;
55 int len;
56
57 len = SEG6_IPTUN_ENCAP_SIZE(tuninfo);
58
59 nla = nla_reserve(skb, attrtype, len);
60 if (!nla)
61 return -EMSGSIZE;
62
63 data = nla_data(nla);
64 memcpy(data, tuninfo, len);
65
66 return 0;
67}
68
69static void set_tun_src(struct net *net, struct net_device *dev,
70 struct in6_addr *daddr, struct in6_addr *saddr)
71{
72 struct seg6_pernet_data *sdata = seg6_pernet(net);
73 struct in6_addr *tun_src;
74
75 rcu_read_lock();
76
77 tun_src = rcu_dereference(sdata->tun_src);
78
79 if (!ipv6_addr_any(tun_src)) {
80 memcpy(saddr, tun_src, sizeof(struct in6_addr));
81 } else {
82 ipv6_dev_get_saddr(net, dev, daddr, IPV6_PREFER_SRC_PUBLIC,
83 saddr);
84 }
85
86 rcu_read_unlock();
87}
88
Ahmed Abdelsalamb5facfd2018-04-24 20:23:16 +020089/* Compute flowlabel for outer IPv6 header */
90static __be32 seg6_make_flowlabel(struct net *net, struct sk_buff *skb,
91 struct ipv6hdr *inner_hdr)
92{
93 int do_flowlabel = net->ipv6.sysctl.seg6_flowlabel;
94 __be32 flowlabel = 0;
95 u32 hash;
96
97 if (do_flowlabel > 0) {
98 hash = skb_get_hash(skb);
Colin Ian King3ee593a2018-07-17 16:52:54 +010099 hash = rol32(hash, 16);
Ahmed Abdelsalamb5facfd2018-04-24 20:23:16 +0200100 flowlabel = (__force __be32)hash & IPV6_FLOWLABEL_MASK;
101 } else if (!do_flowlabel && skb->protocol == htons(ETH_P_IPV6)) {
102 flowlabel = ip6_flowlabel(inner_hdr);
103 }
104 return flowlabel;
105}
106
David Lebrun6c8702c2016-11-08 14:57:41 +0100107/* encapsulate an IPv6 packet within an outer IPv6 header with a given SRH */
David Lebrun32d99d02017-08-25 09:56:44 +0200108int seg6_do_srh_encap(struct sk_buff *skb, struct ipv6_sr_hdr *osrh, int proto)
David Lebrun6c8702c2016-11-08 14:57:41 +0100109{
David Lebrun8936ef72018-03-20 14:44:56 +0000110 struct dst_entry *dst = skb_dst(skb);
111 struct net *net = dev_net(dst->dev);
David Lebrun6c8702c2016-11-08 14:57:41 +0100112 struct ipv6hdr *hdr, *inner_hdr;
113 struct ipv6_sr_hdr *isrh;
114 int hdrlen, tot_len, err;
Ahmed Abdelsalamb5facfd2018-04-24 20:23:16 +0200115 __be32 flowlabel;
David Lebrun6c8702c2016-11-08 14:57:41 +0100116
117 hdrlen = (osrh->hdrlen + 1) << 3;
118 tot_len = hdrlen + sizeof(*hdr);
119
Mathieu Xhonneuxbbb40a02018-05-25 13:29:41 +0100120 err = skb_cow_head(skb, tot_len + skb->mac_len);
David Lebrun6c8702c2016-11-08 14:57:41 +0100121 if (unlikely(err))
122 return err;
123
124 inner_hdr = ipv6_hdr(skb);
Ahmed Abdelsalam6df93462018-04-28 12:18:35 +0200125 flowlabel = seg6_make_flowlabel(net, skb, inner_hdr);
David Lebrun6c8702c2016-11-08 14:57:41 +0100126
127 skb_push(skb, tot_len);
128 skb_reset_network_header(skb);
129 skb_mac_header_rebuild(skb);
130 hdr = ipv6_hdr(skb);
131
132 /* inherit tc, flowlabel and hlim
133 * hlim will be decremented in ip6_forward() afterwards and
134 * decapsulation will overwrite inner hlim with outer hlim
135 */
David Lebrun32d99d02017-08-25 09:56:44 +0200136
137 if (skb->protocol == htons(ETH_P_IPV6)) {
138 ip6_flow_hdr(hdr, ip6_tclass(ip6_flowinfo(inner_hdr)),
Ahmed Abdelsalamb5facfd2018-04-24 20:23:16 +0200139 flowlabel);
David Lebrun32d99d02017-08-25 09:56:44 +0200140 hdr->hop_limit = inner_hdr->hop_limit;
141 } else {
Ahmed Abdelsalamb5facfd2018-04-24 20:23:16 +0200142 ip6_flow_hdr(hdr, 0, flowlabel);
David Lebrun32d99d02017-08-25 09:56:44 +0200143 hdr->hop_limit = ip6_dst_hoplimit(skb_dst(skb));
Yohei Kanemaruef489742019-01-29 15:52:34 +0900144
145 memset(IP6CB(skb), 0, sizeof(*IP6CB(skb)));
David Lebrun32d99d02017-08-25 09:56:44 +0200146 }
147
David Lebrun6c8702c2016-11-08 14:57:41 +0100148 hdr->nexthdr = NEXTHDR_ROUTING;
149
150 isrh = (void *)hdr + sizeof(*hdr);
151 memcpy(isrh, osrh, hdrlen);
152
David Lebrun32d99d02017-08-25 09:56:44 +0200153 isrh->nexthdr = proto;
David Lebrun6c8702c2016-11-08 14:57:41 +0100154
155 hdr->daddr = isrh->segments[isrh->first_segment];
Ahmed Abdelsalama957fa12018-04-20 15:58:05 +0200156 set_tun_src(net, dst->dev, &hdr->daddr, &hdr->saddr);
David Lebrun6c8702c2016-11-08 14:57:41 +0100157
David Lebrun9baee832016-11-08 14:59:19 +0100158#ifdef CONFIG_IPV6_SEG6_HMAC
159 if (sr_has_hmac(isrh)) {
160 err = seg6_push_hmac(net, &hdr->saddr, isrh);
161 if (unlikely(err))
162 return err;
163 }
164#endif
165
David Lebrun6c8702c2016-11-08 14:57:41 +0100166 skb_postpush_rcsum(skb, hdr, tot_len);
167
168 return 0;
169}
David Lebrunb04c80d2017-08-05 12:38:25 +0200170EXPORT_SYMBOL_GPL(seg6_do_srh_encap);
David Lebrun6c8702c2016-11-08 14:57:41 +0100171
172/* insert an SRH within an IPv6 packet, just after the IPv6 header */
David Lebrunb04c80d2017-08-05 12:38:25 +0200173int seg6_do_srh_inline(struct sk_buff *skb, struct ipv6_sr_hdr *osrh)
David Lebrun6c8702c2016-11-08 14:57:41 +0100174{
175 struct ipv6hdr *hdr, *oldhdr;
176 struct ipv6_sr_hdr *isrh;
177 int hdrlen, err;
178
179 hdrlen = (osrh->hdrlen + 1) << 3;
180
Mathieu Xhonneuxbbb40a02018-05-25 13:29:41 +0100181 err = skb_cow_head(skb, hdrlen + skb->mac_len);
David Lebrun6c8702c2016-11-08 14:57:41 +0100182 if (unlikely(err))
183 return err;
184
185 oldhdr = ipv6_hdr(skb);
186
187 skb_pull(skb, sizeof(struct ipv6hdr));
188 skb_postpull_rcsum(skb, skb_network_header(skb),
189 sizeof(struct ipv6hdr));
190
191 skb_push(skb, sizeof(struct ipv6hdr) + hdrlen);
192 skb_reset_network_header(skb);
193 skb_mac_header_rebuild(skb);
194
195 hdr = ipv6_hdr(skb);
196
197 memmove(hdr, oldhdr, sizeof(*hdr));
198
199 isrh = (void *)hdr + sizeof(*hdr);
200 memcpy(isrh, osrh, hdrlen);
201
202 isrh->nexthdr = hdr->nexthdr;
203 hdr->nexthdr = NEXTHDR_ROUTING;
204
205 isrh->segments[0] = hdr->daddr;
206 hdr->daddr = isrh->segments[isrh->first_segment];
207
David Lebrun9baee832016-11-08 14:59:19 +0100208#ifdef CONFIG_IPV6_SEG6_HMAC
209 if (sr_has_hmac(isrh)) {
210 struct net *net = dev_net(skb_dst(skb)->dev);
211
212 err = seg6_push_hmac(net, &hdr->saddr, isrh);
213 if (unlikely(err))
214 return err;
215 }
216#endif
217
David Lebrun6c8702c2016-11-08 14:57:41 +0100218 skb_postpush_rcsum(skb, hdr, sizeof(struct ipv6hdr) + hdrlen);
219
220 return 0;
221}
David Lebrunb04c80d2017-08-05 12:38:25 +0200222EXPORT_SYMBOL_GPL(seg6_do_srh_inline);
David Lebrun6c8702c2016-11-08 14:57:41 +0100223
224static int seg6_do_srh(struct sk_buff *skb)
225{
226 struct dst_entry *dst = skb_dst(skb);
227 struct seg6_iptunnel_encap *tinfo;
David Lebrun32d99d02017-08-25 09:56:44 +0200228 int proto, err = 0;
David Lebrun6c8702c2016-11-08 14:57:41 +0100229
230 tinfo = seg6_encap_lwtunnel(dst->lwtstate);
231
David Lebrun6c8702c2016-11-08 14:57:41 +0100232 switch (tinfo->mode) {
David Lebrun6c8702c2016-11-08 14:57:41 +0100233 case SEG6_IPTUN_MODE_INLINE:
David Lebrun32d99d02017-08-25 09:56:44 +0200234 if (skb->protocol != htons(ETH_P_IPV6))
235 return -EINVAL;
236
David Lebrun6c8702c2016-11-08 14:57:41 +0100237 err = seg6_do_srh_inline(skb, tinfo->srh);
David Lebrun32d99d02017-08-25 09:56:44 +0200238 if (err)
239 return err;
David Lebrun6c8702c2016-11-08 14:57:41 +0100240 break;
David Lebrun6c8702c2016-11-08 14:57:41 +0100241 case SEG6_IPTUN_MODE_ENCAP:
David Lebrun5807b222018-03-29 17:59:36 +0100242 err = iptunnel_handle_offloads(skb, SKB_GSO_IPXIP6);
243 if (err)
244 return err;
245
David Lebrun32d99d02017-08-25 09:56:44 +0200246 if (skb->protocol == htons(ETH_P_IPV6))
247 proto = IPPROTO_IPV6;
248 else if (skb->protocol == htons(ETH_P_IP))
249 proto = IPPROTO_IPIP;
250 else
251 return -EINVAL;
252
253 err = seg6_do_srh_encap(skb, tinfo->srh, proto);
254 if (err)
255 return err;
256
David Lebrun5807b222018-03-29 17:59:36 +0100257 skb_set_inner_transport_header(skb, skb_transport_offset(skb));
258 skb_set_inner_protocol(skb, skb->protocol);
David Lebrun32d99d02017-08-25 09:56:44 +0200259 skb->protocol = htons(ETH_P_IPV6);
David Lebrun6c8702c2016-11-08 14:57:41 +0100260 break;
David Lebrun38ee7f22017-08-25 09:56:45 +0200261 case SEG6_IPTUN_MODE_L2ENCAP:
262 if (!skb_mac_header_was_set(skb))
263 return -EINVAL;
264
265 if (pskb_expand_head(skb, skb->mac_len, 0, GFP_ATOMIC) < 0)
266 return -ENOMEM;
267
268 skb_mac_header_rebuild(skb);
269 skb_push(skb, skb->mac_len);
270
271 err = seg6_do_srh_encap(skb, tinfo->srh, NEXTHDR_NONE);
272 if (err)
273 return err;
274
275 skb->protocol = htons(ETH_P_IPV6);
276 break;
David Lebrun6c8702c2016-11-08 14:57:41 +0100277 }
278
David Lebrun6c8702c2016-11-08 14:57:41 +0100279 ipv6_hdr(skb)->payload_len = htons(skb->len - sizeof(struct ipv6hdr));
280 skb_set_transport_header(skb, sizeof(struct ipv6hdr));
281
David Lebrun6c8702c2016-11-08 14:57:41 +0100282 return 0;
283}
284
Wei Yongjunbb4005b2017-02-06 16:15:05 +0000285static int seg6_input(struct sk_buff *skb)
David Lebrun6c8702c2016-11-08 14:57:41 +0100286{
David Lebrunaf4a2202017-03-24 10:46:27 +0100287 struct dst_entry *orig_dst = skb_dst(skb);
288 struct dst_entry *dst = NULL;
289 struct seg6_lwt *slwt;
David Lebrun6c8702c2016-11-08 14:57:41 +0100290 int err;
291
292 err = seg6_do_srh(skb);
293 if (unlikely(err)) {
294 kfree_skb(skb);
295 return err;
296 }
297
David Lebrunaf4a2202017-03-24 10:46:27 +0100298 slwt = seg6_lwt_lwtunnel(orig_dst->lwtstate);
299
David Lebrunaf4a2202017-03-24 10:46:27 +0100300 preempt_disable();
301 dst = dst_cache_get(&slwt->cache);
302 preempt_enable();
David Lebrunaf4a2202017-03-24 10:46:27 +0100303
David Lebrun6c8702c2016-11-08 14:57:41 +0100304 skb_dst_drop(skb);
David Lebrunaf4a2202017-03-24 10:46:27 +0100305
306 if (!dst) {
307 ip6_route_input(skb);
David Lebrunaf4a2202017-03-24 10:46:27 +0100308 dst = skb_dst(skb);
309 if (!dst->error) {
310 preempt_disable();
311 dst_cache_set_ip6(&slwt->cache, dst,
312 &ipv6_hdr(skb)->saddr);
313 preempt_enable();
314 }
David Lebrunaf4a2202017-03-24 10:46:27 +0100315 } else {
316 skb_dst_set(skb, dst);
317 }
David Lebrun6c8702c2016-11-08 14:57:41 +0100318
David Lebrunaf3b5152017-04-16 12:27:14 +0200319 err = skb_cow_head(skb, LL_RESERVED_SPACE(dst->dev));
320 if (unlikely(err))
321 return err;
322
David Lebrun6c8702c2016-11-08 14:57:41 +0100323 return dst_input(skb);
324}
325
Wei Yongjunbb4005b2017-02-06 16:15:05 +0000326static int seg6_output(struct net *net, struct sock *sk, struct sk_buff *skb)
David Lebrun6c8702c2016-11-08 14:57:41 +0100327{
328 struct dst_entry *orig_dst = skb_dst(skb);
329 struct dst_entry *dst = NULL;
330 struct seg6_lwt *slwt;
331 int err = -EINVAL;
332
333 err = seg6_do_srh(skb);
334 if (unlikely(err))
335 goto drop;
336
337 slwt = seg6_lwt_lwtunnel(orig_dst->lwtstate);
338
David Lebrunfa795812017-01-12 21:30:01 +0100339 preempt_disable();
David Lebrun6c8702c2016-11-08 14:57:41 +0100340 dst = dst_cache_get(&slwt->cache);
David Lebrunfa795812017-01-12 21:30:01 +0100341 preempt_enable();
David Lebrun6c8702c2016-11-08 14:57:41 +0100342
343 if (unlikely(!dst)) {
344 struct ipv6hdr *hdr = ipv6_hdr(skb);
345 struct flowi6 fl6;
346
Shmulik Ladkani1b4e5ad2018-12-07 09:50:17 +0200347 memset(&fl6, 0, sizeof(fl6));
David Lebrun6c8702c2016-11-08 14:57:41 +0100348 fl6.daddr = hdr->daddr;
349 fl6.saddr = hdr->saddr;
350 fl6.flowlabel = ip6_flowinfo(hdr);
351 fl6.flowi6_mark = skb->mark;
352 fl6.flowi6_proto = hdr->nexthdr;
353
354 dst = ip6_route_output(net, NULL, &fl6);
355 if (dst->error) {
356 err = dst->error;
357 dst_release(dst);
358 goto drop;
359 }
360
David Lebrunfa795812017-01-12 21:30:01 +0100361 preempt_disable();
David Lebrun6c8702c2016-11-08 14:57:41 +0100362 dst_cache_set_ip6(&slwt->cache, dst, &fl6.saddr);
David Lebrunfa795812017-01-12 21:30:01 +0100363 preempt_enable();
David Lebrun6c8702c2016-11-08 14:57:41 +0100364 }
365
366 skb_dst_drop(skb);
367 skb_dst_set(skb, dst);
368
David Lebrunaf3b5152017-04-16 12:27:14 +0200369 err = skb_cow_head(skb, LL_RESERVED_SPACE(dst->dev));
370 if (unlikely(err))
371 goto drop;
372
David Lebrun6c8702c2016-11-08 14:57:41 +0100373 return dst_output(net, sk, skb);
374drop:
375 kfree_skb(skb);
376 return err;
377}
378
David Ahern30357d72017-01-30 12:07:37 -0800379static int seg6_build_state(struct nlattr *nla,
David Lebrun6c8702c2016-11-08 14:57:41 +0100380 unsigned int family, const void *cfg,
David Ahern9ae28722017-05-27 16:19:28 -0600381 struct lwtunnel_state **ts,
382 struct netlink_ext_ack *extack)
David Lebrun6c8702c2016-11-08 14:57:41 +0100383{
384 struct nlattr *tb[SEG6_IPTUNNEL_MAX + 1];
385 struct seg6_iptunnel_encap *tuninfo;
386 struct lwtunnel_state *newts;
387 int tuninfo_len, min_size;
388 struct seg6_lwt *slwt;
389 int err;
390
David Lebrun32d99d02017-08-25 09:56:44 +0200391 if (family != AF_INET && family != AF_INET6)
392 return -EINVAL;
393
Johannes Berg8cb08172019-04-26 14:07:28 +0200394 err = nla_parse_nested_deprecated(tb, SEG6_IPTUNNEL_MAX, nla,
395 seg6_iptunnel_policy, extack);
David Lebrun6c8702c2016-11-08 14:57:41 +0100396
397 if (err < 0)
398 return err;
399
400 if (!tb[SEG6_IPTUNNEL_SRH])
401 return -EINVAL;
402
403 tuninfo = nla_data(tb[SEG6_IPTUNNEL_SRH]);
404 tuninfo_len = nla_len(tb[SEG6_IPTUNNEL_SRH]);
405
406 /* tuninfo must contain at least the iptunnel encap structure,
407 * the SRH and one segment
408 */
409 min_size = sizeof(*tuninfo) + sizeof(struct ipv6_sr_hdr) +
410 sizeof(struct in6_addr);
411 if (tuninfo_len < min_size)
412 return -EINVAL;
413
414 switch (tuninfo->mode) {
David Lebrun6c8702c2016-11-08 14:57:41 +0100415 case SEG6_IPTUN_MODE_INLINE:
David Lebrun32d99d02017-08-25 09:56:44 +0200416 if (family != AF_INET6)
417 return -EINVAL;
418
David Lebrun6c8702c2016-11-08 14:57:41 +0100419 break;
David Lebrun6c8702c2016-11-08 14:57:41 +0100420 case SEG6_IPTUN_MODE_ENCAP:
421 break;
David Lebrun38ee7f22017-08-25 09:56:45 +0200422 case SEG6_IPTUN_MODE_L2ENCAP:
423 break;
David Lebrun6c8702c2016-11-08 14:57:41 +0100424 default:
425 return -EINVAL;
426 }
427
428 /* verify that SRH is consistent */
429 if (!seg6_validate_srh(tuninfo->srh, tuninfo_len - sizeof(*tuninfo)))
430 return -EINVAL;
431
432 newts = lwtunnel_state_alloc(tuninfo_len + sizeof(*slwt));
433 if (!newts)
434 return -ENOMEM;
435
436 slwt = seg6_lwt_lwtunnel(newts);
437
David Lebrun191f86c2018-03-20 14:44:55 +0000438 err = dst_cache_init(&slwt->cache, GFP_ATOMIC);
David Lebrun6c8702c2016-11-08 14:57:41 +0100439 if (err) {
440 kfree(newts);
441 return err;
442 }
David Lebrun6c8702c2016-11-08 14:57:41 +0100443
444 memcpy(&slwt->tuninfo, tuninfo, tuninfo_len);
445
446 newts->type = LWTUNNEL_ENCAP_SEG6;
David Lebrun38ee7f22017-08-25 09:56:45 +0200447 newts->flags |= LWTUNNEL_STATE_INPUT_REDIRECT;
448
449 if (tuninfo->mode != SEG6_IPTUN_MODE_L2ENCAP)
450 newts->flags |= LWTUNNEL_STATE_OUTPUT_REDIRECT;
451
David Lebrun6c8702c2016-11-08 14:57:41 +0100452 newts->headroom = seg6_lwt_headroom(tuninfo);
453
454 *ts = newts;
455
456 return 0;
457}
458
David Lebrun6c8702c2016-11-08 14:57:41 +0100459static void seg6_destroy_state(struct lwtunnel_state *lwt)
460{
461 dst_cache_destroy(&seg6_lwt_lwtunnel(lwt)->cache);
462}
David Lebrun6c8702c2016-11-08 14:57:41 +0100463
464static int seg6_fill_encap_info(struct sk_buff *skb,
465 struct lwtunnel_state *lwtstate)
466{
467 struct seg6_iptunnel_encap *tuninfo = seg6_encap_lwtunnel(lwtstate);
468
469 if (nla_put_srh(skb, SEG6_IPTUNNEL_SRH, tuninfo))
470 return -EMSGSIZE;
471
472 return 0;
473}
474
475static int seg6_encap_nlsize(struct lwtunnel_state *lwtstate)
476{
477 struct seg6_iptunnel_encap *tuninfo = seg6_encap_lwtunnel(lwtstate);
478
479 return nla_total_size(SEG6_IPTUN_ENCAP_SIZE(tuninfo));
480}
481
482static int seg6_encap_cmp(struct lwtunnel_state *a, struct lwtunnel_state *b)
483{
484 struct seg6_iptunnel_encap *a_hdr = seg6_encap_lwtunnel(a);
485 struct seg6_iptunnel_encap *b_hdr = seg6_encap_lwtunnel(b);
486 int len = SEG6_IPTUN_ENCAP_SIZE(a_hdr);
487
488 if (len != SEG6_IPTUN_ENCAP_SIZE(b_hdr))
489 return 1;
490
491 return memcmp(a_hdr, b_hdr, len);
492}
493
494static const struct lwtunnel_encap_ops seg6_iptun_ops = {
495 .build_state = seg6_build_state,
David Lebrun6c8702c2016-11-08 14:57:41 +0100496 .destroy_state = seg6_destroy_state,
David Lebrun6c8702c2016-11-08 14:57:41 +0100497 .output = seg6_output,
498 .input = seg6_input,
499 .fill_encap = seg6_fill_encap_info,
500 .get_encap_size = seg6_encap_nlsize,
501 .cmp_encap = seg6_encap_cmp,
Robert Shearman88ff7332017-01-24 16:26:47 +0000502 .owner = THIS_MODULE,
David Lebrun6c8702c2016-11-08 14:57:41 +0100503};
504
505int __init seg6_iptunnel_init(void)
506{
507 return lwtunnel_encap_add_ops(&seg6_iptun_ops, LWTUNNEL_ENCAP_SEG6);
508}
509
510void seg6_iptunnel_exit(void)
511{
512 lwtunnel_encap_del_ops(&seg6_iptun_ops, LWTUNNEL_ENCAP_SEG6);
513}