1 #include <linux/module.h>
2 #include <linux/errno.h>
3 #include <linux/socket.h>
4 #include <linux/skbuff.h>
7 #include <linux/types.h>
8 #include <linux/kernel.h>
9 #include <net/genetlink.h>
13 #include <net/protocol.h>
15 #include <net/udp_tunnel.h>
17 #include <uapi/linux/fou.h>
18 #include <uapi/linux/genetlink.h>
27 struct list_head list
;
31 #define FOU_F_REMCSUM_NOPARTIAL BIT(0)
37 struct udp_port_cfg udp_config
;
40 static unsigned int fou_net_id
;
43 struct list_head fou_list
;
44 struct mutex fou_lock
;
47 static inline struct fou
*fou_from_sock(struct sock
*sk
)
49 return sk
->sk_user_data
;
52 static int fou_recv_pull(struct sk_buff
*skb
, struct fou
*fou
, size_t len
)
54 /* Remove 'len' bytes from the packet (UDP header and
55 * FOU header if present).
57 if (fou
->family
== AF_INET
)
58 ip_hdr(skb
)->tot_len
= htons(ntohs(ip_hdr(skb
)->tot_len
) - len
);
60 ipv6_hdr(skb
)->payload_len
=
61 htons(ntohs(ipv6_hdr(skb
)->payload_len
) - len
);
64 skb_postpull_rcsum(skb
, udp_hdr(skb
), len
);
65 skb_reset_transport_header(skb
);
66 return iptunnel_pull_offloads(skb
);
69 static int fou_udp_recv(struct sock
*sk
, struct sk_buff
*skb
)
71 struct fou
*fou
= fou_from_sock(sk
);
76 if (fou_recv_pull(skb
, fou
, sizeof(struct udphdr
)))
79 return -fou
->protocol
;
86 static struct guehdr
*gue_remcsum(struct sk_buff
*skb
, struct guehdr
*guehdr
,
87 void *data
, size_t hdrlen
, u8 ipproto
,
91 size_t start
= ntohs(pd
[0]);
92 size_t offset
= ntohs(pd
[1]);
93 size_t plen
= sizeof(struct udphdr
) + hdrlen
+
94 max_t(size_t, offset
+ sizeof(u16
), start
);
96 if (skb
->remcsum_offload
)
99 if (!pskb_may_pull(skb
, plen
))
101 guehdr
= (struct guehdr
*)&udp_hdr(skb
)[1];
103 skb_remcsum_process(skb
, (void *)guehdr
+ hdrlen
,
104 start
, offset
, nopartial
);
109 static int gue_control_message(struct sk_buff
*skb
, struct guehdr
*guehdr
)
116 static int gue_udp_recv(struct sock
*sk
, struct sk_buff
*skb
)
118 struct fou
*fou
= fou_from_sock(sk
);
119 size_t len
, optlen
, hdrlen
;
120 struct guehdr
*guehdr
;
127 len
= sizeof(struct udphdr
) + sizeof(struct guehdr
);
128 if (!pskb_may_pull(skb
, len
))
131 guehdr
= (struct guehdr
*)&udp_hdr(skb
)[1];
133 switch (guehdr
->version
) {
134 case 0: /* Full GUE header present */
138 /* Direct encasulation of IPv4 or IPv6 */
142 switch (((struct iphdr
*)guehdr
)->version
) {
153 if (fou_recv_pull(skb
, fou
, sizeof(struct udphdr
)))
159 default: /* Undefined version */
163 optlen
= guehdr
->hlen
<< 2;
166 if (!pskb_may_pull(skb
, len
))
169 /* guehdr may change after pull */
170 guehdr
= (struct guehdr
*)&udp_hdr(skb
)[1];
172 hdrlen
= sizeof(struct guehdr
) + optlen
;
174 if (guehdr
->version
!= 0 || validate_gue_flags(guehdr
, optlen
))
177 hdrlen
= sizeof(struct guehdr
) + optlen
;
179 if (fou
->family
== AF_INET
)
180 ip_hdr(skb
)->tot_len
= htons(ntohs(ip_hdr(skb
)->tot_len
) - len
);
182 ipv6_hdr(skb
)->payload_len
=
183 htons(ntohs(ipv6_hdr(skb
)->payload_len
) - len
);
185 /* Pull csum through the guehdr now . This can be used if
186 * there is a remote checksum offload.
188 skb_postpull_rcsum(skb
, udp_hdr(skb
), len
);
192 if (guehdr
->flags
& GUE_FLAG_PRIV
) {
193 __be32 flags
= *(__be32
*)(data
+ doffset
);
195 doffset
+= GUE_LEN_PRIV
;
197 if (flags
& GUE_PFLAG_REMCSUM
) {
198 guehdr
= gue_remcsum(skb
, guehdr
, data
+ doffset
,
199 hdrlen
, guehdr
->proto_ctype
,
201 FOU_F_REMCSUM_NOPARTIAL
));
207 doffset
+= GUE_PLEN_REMCSUM
;
211 if (unlikely(guehdr
->control
))
212 return gue_control_message(skb
, guehdr
);
214 __skb_pull(skb
, sizeof(struct udphdr
) + hdrlen
);
215 skb_reset_transport_header(skb
);
217 if (iptunnel_pull_offloads(skb
))
220 return -guehdr
->proto_ctype
;
227 static struct sk_buff
**fou_gro_receive(struct sock
*sk
,
228 struct sk_buff
**head
,
231 const struct net_offload
*ops
;
232 struct sk_buff
**pp
= NULL
;
233 u8 proto
= fou_from_sock(sk
)->protocol
;
234 const struct net_offload
**offloads
;
236 /* We can clear the encap_mark for FOU as we are essentially doing
237 * one of two possible things. We are either adding an L4 tunnel
238 * header to the outer L3 tunnel header, or we are are simply
239 * treating the GRE tunnel header as though it is a UDP protocol
240 * specific header such as VXLAN or GENEVE.
242 NAPI_GRO_CB(skb
)->encap_mark
= 0;
244 /* Flag this frame as already having an outer encap header */
245 NAPI_GRO_CB(skb
)->is_fou
= 1;
248 offloads
= NAPI_GRO_CB(skb
)->is_ipv6
? inet6_offloads
: inet_offloads
;
249 ops
= rcu_dereference(offloads
[proto
]);
250 if (!ops
|| !ops
->callbacks
.gro_receive
)
253 pp
= call_gro_receive(ops
->callbacks
.gro_receive
, head
, skb
);
261 static int fou_gro_complete(struct sock
*sk
, struct sk_buff
*skb
,
264 const struct net_offload
*ops
;
265 u8 proto
= fou_from_sock(sk
)->protocol
;
267 const struct net_offload
**offloads
;
270 offloads
= NAPI_GRO_CB(skb
)->is_ipv6
? inet6_offloads
: inet_offloads
;
271 ops
= rcu_dereference(offloads
[proto
]);
272 if (WARN_ON(!ops
|| !ops
->callbacks
.gro_complete
))
275 err
= ops
->callbacks
.gro_complete(skb
, nhoff
);
277 skb_set_inner_mac_header(skb
, nhoff
);
285 static struct guehdr
*gue_gro_remcsum(struct sk_buff
*skb
, unsigned int off
,
286 struct guehdr
*guehdr
, void *data
,
287 size_t hdrlen
, struct gro_remcsum
*grc
,
291 size_t start
= ntohs(pd
[0]);
292 size_t offset
= ntohs(pd
[1]);
294 if (skb
->remcsum_offload
)
297 if (!NAPI_GRO_CB(skb
)->csum_valid
)
300 guehdr
= skb_gro_remcsum_process(skb
, (void *)guehdr
, off
, hdrlen
,
301 start
, offset
, grc
, nopartial
);
303 skb
->remcsum_offload
= 1;
308 static struct sk_buff
**gue_gro_receive(struct sock
*sk
,
309 struct sk_buff
**head
,
312 const struct net_offload
**offloads
;
313 const struct net_offload
*ops
;
314 struct sk_buff
**pp
= NULL
;
316 struct guehdr
*guehdr
;
317 size_t len
, optlen
, hdrlen
, off
;
321 struct fou
*fou
= fou_from_sock(sk
);
322 struct gro_remcsum grc
;
325 skb_gro_remcsum_init(&grc
);
327 off
= skb_gro_offset(skb
);
328 len
= off
+ sizeof(*guehdr
);
330 guehdr
= skb_gro_header_fast(skb
, off
);
331 if (skb_gro_header_hard(skb
, len
)) {
332 guehdr
= skb_gro_header_slow(skb
, len
, off
);
333 if (unlikely(!guehdr
))
337 switch (guehdr
->version
) {
341 switch (((struct iphdr
*)guehdr
)->version
) {
343 proto
= IPPROTO_IPIP
;
346 proto
= IPPROTO_IPV6
;
356 optlen
= guehdr
->hlen
<< 2;
359 if (skb_gro_header_hard(skb
, len
)) {
360 guehdr
= skb_gro_header_slow(skb
, len
, off
);
361 if (unlikely(!guehdr
))
365 if (unlikely(guehdr
->control
) || guehdr
->version
!= 0 ||
366 validate_gue_flags(guehdr
, optlen
))
369 hdrlen
= sizeof(*guehdr
) + optlen
;
371 /* Adjust NAPI_GRO_CB(skb)->csum to account for guehdr,
372 * this is needed if there is a remote checkcsum offload.
374 skb_gro_postpull_rcsum(skb
, guehdr
, hdrlen
);
378 if (guehdr
->flags
& GUE_FLAG_PRIV
) {
379 __be32 flags
= *(__be32
*)(data
+ doffset
);
381 doffset
+= GUE_LEN_PRIV
;
383 if (flags
& GUE_PFLAG_REMCSUM
) {
384 guehdr
= gue_gro_remcsum(skb
, off
, guehdr
,
385 data
+ doffset
, hdrlen
, &grc
,
387 FOU_F_REMCSUM_NOPARTIAL
));
394 doffset
+= GUE_PLEN_REMCSUM
;
398 skb_gro_pull(skb
, hdrlen
);
400 for (p
= *head
; p
; p
= p
->next
) {
401 const struct guehdr
*guehdr2
;
403 if (!NAPI_GRO_CB(p
)->same_flow
)
406 guehdr2
= (struct guehdr
*)(p
->data
+ off
);
408 /* Compare base GUE header to be equal (covers
409 * hlen, version, proto_ctype, and flags.
411 if (guehdr
->word
!= guehdr2
->word
) {
412 NAPI_GRO_CB(p
)->same_flow
= 0;
416 /* Compare optional fields are the same. */
417 if (guehdr
->hlen
&& memcmp(&guehdr
[1], &guehdr2
[1],
418 guehdr
->hlen
<< 2)) {
419 NAPI_GRO_CB(p
)->same_flow
= 0;
424 proto
= guehdr
->proto_ctype
;
428 /* We can clear the encap_mark for GUE as we are essentially doing
429 * one of two possible things. We are either adding an L4 tunnel
430 * header to the outer L3 tunnel header, or we are are simply
431 * treating the GRE tunnel header as though it is a UDP protocol
432 * specific header such as VXLAN or GENEVE.
434 NAPI_GRO_CB(skb
)->encap_mark
= 0;
436 /* Flag this frame as already having an outer encap header */
437 NAPI_GRO_CB(skb
)->is_fou
= 1;
440 offloads
= NAPI_GRO_CB(skb
)->is_ipv6
? inet6_offloads
: inet_offloads
;
441 ops
= rcu_dereference(offloads
[proto
]);
442 if (WARN_ON_ONCE(!ops
|| !ops
->callbacks
.gro_receive
))
445 pp
= call_gro_receive(ops
->callbacks
.gro_receive
, head
, skb
);
451 NAPI_GRO_CB(skb
)->flush
|= flush
;
452 skb_gro_remcsum_cleanup(skb
, &grc
);
453 skb
->remcsum_offload
= 0;
458 static int gue_gro_complete(struct sock
*sk
, struct sk_buff
*skb
, int nhoff
)
460 const struct net_offload
**offloads
;
461 struct guehdr
*guehdr
= (struct guehdr
*)(skb
->data
+ nhoff
);
462 const struct net_offload
*ops
;
463 unsigned int guehlen
= 0;
467 switch (guehdr
->version
) {
469 proto
= guehdr
->proto_ctype
;
470 guehlen
= sizeof(*guehdr
) + (guehdr
->hlen
<< 2);
473 switch (((struct iphdr
*)guehdr
)->version
) {
475 proto
= IPPROTO_IPIP
;
478 proto
= IPPROTO_IPV6
;
489 offloads
= NAPI_GRO_CB(skb
)->is_ipv6
? inet6_offloads
: inet_offloads
;
490 ops
= rcu_dereference(offloads
[proto
]);
491 if (WARN_ON(!ops
|| !ops
->callbacks
.gro_complete
))
494 err
= ops
->callbacks
.gro_complete(skb
, nhoff
+ guehlen
);
496 skb_set_inner_mac_header(skb
, nhoff
+ guehlen
);
503 static int fou_add_to_port_list(struct net
*net
, struct fou
*fou
)
505 struct fou_net
*fn
= net_generic(net
, fou_net_id
);
508 mutex_lock(&fn
->fou_lock
);
509 list_for_each_entry(fout
, &fn
->fou_list
, list
) {
510 if (fou
->port
== fout
->port
&&
511 fou
->family
== fout
->family
) {
512 mutex_unlock(&fn
->fou_lock
);
517 list_add(&fou
->list
, &fn
->fou_list
);
518 mutex_unlock(&fn
->fou_lock
);
523 static void fou_release(struct fou
*fou
)
525 struct socket
*sock
= fou
->sock
;
527 list_del(&fou
->list
);
528 udp_tunnel_sock_release(sock
);
533 static int fou_create(struct net
*net
, struct fou_cfg
*cfg
,
534 struct socket
**sockp
)
536 struct socket
*sock
= NULL
;
537 struct fou
*fou
= NULL
;
539 struct udp_tunnel_sock_cfg tunnel_cfg
;
542 /* Open UDP socket */
543 err
= udp_sock_create(net
, &cfg
->udp_config
, &sock
);
547 /* Allocate FOU port structure */
548 fou
= kzalloc(sizeof(*fou
), GFP_KERNEL
);
556 fou
->port
= cfg
->udp_config
.local_udp_port
;
557 fou
->family
= cfg
->udp_config
.family
;
558 fou
->flags
= cfg
->flags
;
559 fou
->type
= cfg
->type
;
562 memset(&tunnel_cfg
, 0, sizeof(tunnel_cfg
));
563 tunnel_cfg
.encap_type
= 1;
564 tunnel_cfg
.sk_user_data
= fou
;
565 tunnel_cfg
.encap_destroy
= NULL
;
567 /* Initial for fou type */
569 case FOU_ENCAP_DIRECT
:
570 tunnel_cfg
.encap_rcv
= fou_udp_recv
;
571 tunnel_cfg
.gro_receive
= fou_gro_receive
;
572 tunnel_cfg
.gro_complete
= fou_gro_complete
;
573 fou
->protocol
= cfg
->protocol
;
576 tunnel_cfg
.encap_rcv
= gue_udp_recv
;
577 tunnel_cfg
.gro_receive
= gue_gro_receive
;
578 tunnel_cfg
.gro_complete
= gue_gro_complete
;
585 setup_udp_tunnel_sock(net
, sock
, &tunnel_cfg
);
587 sk
->sk_allocation
= GFP_ATOMIC
;
589 err
= fou_add_to_port_list(net
, fou
);
601 udp_tunnel_sock_release(sock
);
606 static int fou_destroy(struct net
*net
, struct fou_cfg
*cfg
)
608 struct fou_net
*fn
= net_generic(net
, fou_net_id
);
609 __be16 port
= cfg
->udp_config
.local_udp_port
;
610 u8 family
= cfg
->udp_config
.family
;
614 mutex_lock(&fn
->fou_lock
);
615 list_for_each_entry(fou
, &fn
->fou_list
, list
) {
616 if (fou
->port
== port
&& fou
->family
== family
) {
622 mutex_unlock(&fn
->fou_lock
);
627 static struct genl_family fou_nl_family
;
629 static const struct nla_policy fou_nl_policy
[FOU_ATTR_MAX
+ 1] = {
630 [FOU_ATTR_PORT
] = { .type
= NLA_U16
, },
631 [FOU_ATTR_AF
] = { .type
= NLA_U8
, },
632 [FOU_ATTR_IPPROTO
] = { .type
= NLA_U8
, },
633 [FOU_ATTR_TYPE
] = { .type
= NLA_U8
, },
634 [FOU_ATTR_REMCSUM_NOPARTIAL
] = { .type
= NLA_FLAG
, },
637 static int parse_nl_config(struct genl_info
*info
,
640 memset(cfg
, 0, sizeof(*cfg
));
642 cfg
->udp_config
.family
= AF_INET
;
644 if (info
->attrs
[FOU_ATTR_AF
]) {
645 u8 family
= nla_get_u8(info
->attrs
[FOU_ATTR_AF
]);
651 cfg
->udp_config
.ipv6_v6only
= 1;
654 return -EAFNOSUPPORT
;
657 cfg
->udp_config
.family
= family
;
660 if (info
->attrs
[FOU_ATTR_PORT
]) {
661 __be16 port
= nla_get_be16(info
->attrs
[FOU_ATTR_PORT
]);
663 cfg
->udp_config
.local_udp_port
= port
;
666 if (info
->attrs
[FOU_ATTR_IPPROTO
])
667 cfg
->protocol
= nla_get_u8(info
->attrs
[FOU_ATTR_IPPROTO
]);
669 if (info
->attrs
[FOU_ATTR_TYPE
])
670 cfg
->type
= nla_get_u8(info
->attrs
[FOU_ATTR_TYPE
]);
672 if (info
->attrs
[FOU_ATTR_REMCSUM_NOPARTIAL
])
673 cfg
->flags
|= FOU_F_REMCSUM_NOPARTIAL
;
678 static int fou_nl_cmd_add_port(struct sk_buff
*skb
, struct genl_info
*info
)
680 struct net
*net
= genl_info_net(info
);
684 err
= parse_nl_config(info
, &cfg
);
688 return fou_create(net
, &cfg
, NULL
);
691 static int fou_nl_cmd_rm_port(struct sk_buff
*skb
, struct genl_info
*info
)
693 struct net
*net
= genl_info_net(info
);
697 err
= parse_nl_config(info
, &cfg
);
701 return fou_destroy(net
, &cfg
);
704 static int fou_fill_info(struct fou
*fou
, struct sk_buff
*msg
)
706 if (nla_put_u8(msg
, FOU_ATTR_AF
, fou
->sock
->sk
->sk_family
) ||
707 nla_put_be16(msg
, FOU_ATTR_PORT
, fou
->port
) ||
708 nla_put_u8(msg
, FOU_ATTR_IPPROTO
, fou
->protocol
) ||
709 nla_put_u8(msg
, FOU_ATTR_TYPE
, fou
->type
))
712 if (fou
->flags
& FOU_F_REMCSUM_NOPARTIAL
)
713 if (nla_put_flag(msg
, FOU_ATTR_REMCSUM_NOPARTIAL
))
718 static int fou_dump_info(struct fou
*fou
, u32 portid
, u32 seq
,
719 u32 flags
, struct sk_buff
*skb
, u8 cmd
)
723 hdr
= genlmsg_put(skb
, portid
, seq
, &fou_nl_family
, flags
, cmd
);
727 if (fou_fill_info(fou
, skb
) < 0)
728 goto nla_put_failure
;
730 genlmsg_end(skb
, hdr
);
734 genlmsg_cancel(skb
, hdr
);
738 static int fou_nl_cmd_get_port(struct sk_buff
*skb
, struct genl_info
*info
)
740 struct net
*net
= genl_info_net(info
);
741 struct fou_net
*fn
= net_generic(net
, fou_net_id
);
749 ret
= parse_nl_config(info
, &cfg
);
752 port
= cfg
.udp_config
.local_udp_port
;
756 family
= cfg
.udp_config
.family
;
757 if (family
!= AF_INET
&& family
!= AF_INET6
)
760 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
765 mutex_lock(&fn
->fou_lock
);
766 list_for_each_entry(fout
, &fn
->fou_list
, list
) {
767 if (port
== fout
->port
&& family
== fout
->family
) {
768 ret
= fou_dump_info(fout
, info
->snd_portid
,
769 info
->snd_seq
, 0, msg
,
774 mutex_unlock(&fn
->fou_lock
);
778 return genlmsg_reply(msg
, info
);
785 static int fou_nl_dump(struct sk_buff
*skb
, struct netlink_callback
*cb
)
787 struct net
*net
= sock_net(skb
->sk
);
788 struct fou_net
*fn
= net_generic(net
, fou_net_id
);
792 mutex_lock(&fn
->fou_lock
);
793 list_for_each_entry(fout
, &fn
->fou_list
, list
) {
794 if (idx
++ < cb
->args
[0])
796 ret
= fou_dump_info(fout
, NETLINK_CB(cb
->skb
).portid
,
797 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
802 mutex_unlock(&fn
->fou_lock
);
808 static const struct genl_ops fou_nl_ops
[] = {
811 .doit
= fou_nl_cmd_add_port
,
812 .policy
= fou_nl_policy
,
813 .flags
= GENL_ADMIN_PERM
,
817 .doit
= fou_nl_cmd_rm_port
,
818 .policy
= fou_nl_policy
,
819 .flags
= GENL_ADMIN_PERM
,
823 .doit
= fou_nl_cmd_get_port
,
824 .dumpit
= fou_nl_dump
,
825 .policy
= fou_nl_policy
,
829 static struct genl_family fou_nl_family __ro_after_init
= {
831 .name
= FOU_GENL_NAME
,
832 .version
= FOU_GENL_VERSION
,
833 .maxattr
= FOU_ATTR_MAX
,
835 .module
= THIS_MODULE
,
837 .n_ops
= ARRAY_SIZE(fou_nl_ops
),
840 size_t fou_encap_hlen(struct ip_tunnel_encap
*e
)
842 return sizeof(struct udphdr
);
844 EXPORT_SYMBOL(fou_encap_hlen
);
846 size_t gue_encap_hlen(struct ip_tunnel_encap
*e
)
849 bool need_priv
= false;
851 len
= sizeof(struct udphdr
) + sizeof(struct guehdr
);
853 if (e
->flags
& TUNNEL_ENCAP_FLAG_REMCSUM
) {
854 len
+= GUE_PLEN_REMCSUM
;
858 len
+= need_priv
? GUE_LEN_PRIV
: 0;
862 EXPORT_SYMBOL(gue_encap_hlen
);
864 int __fou_build_header(struct sk_buff
*skb
, struct ip_tunnel_encap
*e
,
865 u8
*protocol
, __be16
*sport
, int type
)
869 err
= iptunnel_handle_offloads(skb
, type
);
873 *sport
= e
->sport
? : udp_flow_src_port(dev_net(skb
->dev
),
878 EXPORT_SYMBOL(__fou_build_header
);
880 int __gue_build_header(struct sk_buff
*skb
, struct ip_tunnel_encap
*e
,
881 u8
*protocol
, __be16
*sport
, int type
)
883 struct guehdr
*guehdr
;
884 size_t hdrlen
, optlen
= 0;
886 bool need_priv
= false;
889 if ((e
->flags
& TUNNEL_ENCAP_FLAG_REMCSUM
) &&
890 skb
->ip_summed
== CHECKSUM_PARTIAL
) {
891 optlen
+= GUE_PLEN_REMCSUM
;
892 type
|= SKB_GSO_TUNNEL_REMCSUM
;
896 optlen
+= need_priv
? GUE_LEN_PRIV
: 0;
898 err
= iptunnel_handle_offloads(skb
, type
);
902 /* Get source port (based on flow hash) before skb_push */
903 *sport
= e
->sport
? : udp_flow_src_port(dev_net(skb
->dev
),
906 hdrlen
= sizeof(struct guehdr
) + optlen
;
908 skb_push(skb
, hdrlen
);
910 guehdr
= (struct guehdr
*)skb
->data
;
914 guehdr
->hlen
= optlen
>> 2;
916 guehdr
->proto_ctype
= *protocol
;
921 __be32
*flags
= data
;
923 guehdr
->flags
|= GUE_FLAG_PRIV
;
925 data
+= GUE_LEN_PRIV
;
927 if (type
& SKB_GSO_TUNNEL_REMCSUM
) {
928 u16 csum_start
= skb_checksum_start_offset(skb
);
931 if (csum_start
< hdrlen
)
934 csum_start
-= hdrlen
;
935 pd
[0] = htons(csum_start
);
936 pd
[1] = htons(csum_start
+ skb
->csum_offset
);
938 if (!skb_is_gso(skb
)) {
939 skb
->ip_summed
= CHECKSUM_NONE
;
940 skb
->encapsulation
= 0;
943 *flags
|= GUE_PFLAG_REMCSUM
;
944 data
+= GUE_PLEN_REMCSUM
;
951 EXPORT_SYMBOL(__gue_build_header
);
953 #ifdef CONFIG_NET_FOU_IP_TUNNELS
955 static void fou_build_udp(struct sk_buff
*skb
, struct ip_tunnel_encap
*e
,
956 struct flowi4
*fl4
, u8
*protocol
, __be16 sport
)
960 skb_push(skb
, sizeof(struct udphdr
));
961 skb_reset_transport_header(skb
);
967 uh
->len
= htons(skb
->len
);
968 udp_set_csum(!(e
->flags
& TUNNEL_ENCAP_FLAG_CSUM
), skb
,
969 fl4
->saddr
, fl4
->daddr
, skb
->len
);
971 *protocol
= IPPROTO_UDP
;
974 static int fou_build_header(struct sk_buff
*skb
, struct ip_tunnel_encap
*e
,
975 u8
*protocol
, struct flowi4
*fl4
)
977 int type
= e
->flags
& TUNNEL_ENCAP_FLAG_CSUM
? SKB_GSO_UDP_TUNNEL_CSUM
:
982 err
= __fou_build_header(skb
, e
, protocol
, &sport
, type
);
986 fou_build_udp(skb
, e
, fl4
, protocol
, sport
);
991 static int gue_build_header(struct sk_buff
*skb
, struct ip_tunnel_encap
*e
,
992 u8
*protocol
, struct flowi4
*fl4
)
994 int type
= e
->flags
& TUNNEL_ENCAP_FLAG_CSUM
? SKB_GSO_UDP_TUNNEL_CSUM
:
999 err
= __gue_build_header(skb
, e
, protocol
, &sport
, type
);
1003 fou_build_udp(skb
, e
, fl4
, protocol
, sport
);
1009 static const struct ip_tunnel_encap_ops fou_iptun_ops
= {
1010 .encap_hlen
= fou_encap_hlen
,
1011 .build_header
= fou_build_header
,
1014 static const struct ip_tunnel_encap_ops gue_iptun_ops
= {
1015 .encap_hlen
= gue_encap_hlen
,
1016 .build_header
= gue_build_header
,
1019 static int ip_tunnel_encap_add_fou_ops(void)
1023 ret
= ip_tunnel_encap_add_ops(&fou_iptun_ops
, TUNNEL_ENCAP_FOU
);
1025 pr_err("can't add fou ops\n");
1029 ret
= ip_tunnel_encap_add_ops(&gue_iptun_ops
, TUNNEL_ENCAP_GUE
);
1031 pr_err("can't add gue ops\n");
1032 ip_tunnel_encap_del_ops(&fou_iptun_ops
, TUNNEL_ENCAP_FOU
);
1039 static void ip_tunnel_encap_del_fou_ops(void)
1041 ip_tunnel_encap_del_ops(&fou_iptun_ops
, TUNNEL_ENCAP_FOU
);
1042 ip_tunnel_encap_del_ops(&gue_iptun_ops
, TUNNEL_ENCAP_GUE
);
1047 static int ip_tunnel_encap_add_fou_ops(void)
1052 static void ip_tunnel_encap_del_fou_ops(void)
1058 static __net_init
int fou_init_net(struct net
*net
)
1060 struct fou_net
*fn
= net_generic(net
, fou_net_id
);
1062 INIT_LIST_HEAD(&fn
->fou_list
);
1063 mutex_init(&fn
->fou_lock
);
1067 static __net_exit
void fou_exit_net(struct net
*net
)
1069 struct fou_net
*fn
= net_generic(net
, fou_net_id
);
1070 struct fou
*fou
, *next
;
1072 /* Close all the FOU sockets */
1073 mutex_lock(&fn
->fou_lock
);
1074 list_for_each_entry_safe(fou
, next
, &fn
->fou_list
, list
)
1076 mutex_unlock(&fn
->fou_lock
);
1079 static struct pernet_operations fou_net_ops
= {
1080 .init
= fou_init_net
,
1081 .exit
= fou_exit_net
,
1083 .size
= sizeof(struct fou_net
),
1086 static int __init
fou_init(void)
1090 ret
= register_pernet_device(&fou_net_ops
);
1094 ret
= genl_register_family(&fou_nl_family
);
1098 ret
= ip_tunnel_encap_add_fou_ops();
1102 genl_unregister_family(&fou_nl_family
);
1104 unregister_pernet_device(&fou_net_ops
);
1109 static void __exit
fou_fini(void)
1111 ip_tunnel_encap_del_fou_ops();
1112 genl_unregister_family(&fou_nl_family
);
1113 unregister_pernet_device(&fou_net_ops
);
1116 module_init(fou_init
);
1117 module_exit(fou_fini
);
1118 MODULE_AUTHOR("Tom Herbert <therbert@google.com>");
1119 MODULE_LICENSE("GPL");