1 // SPDX-License-Identifier: GPL-2.0-only
2 #include <linux/module.h>
3 #include <linux/errno.h>
4 #include <linux/socket.h>
5 #include <linux/skbuff.h>
7 #include <linux/icmp.h>
9 #include <linux/types.h>
10 #include <linux/kernel.h>
11 #include <net/genetlink.h>
16 #include <net/protocol.h>
18 #include <net/udp_tunnel.h>
20 #include <uapi/linux/fou.h>
21 #include <uapi/linux/genetlink.h>
30 struct list_head list;
34 #define FOU_F_REMCSUM_NOPARTIAL BIT(0)
40 struct udp_port_cfg udp_config;
43 static unsigned int fou_net_id;
46 struct list_head fou_list;
47 struct mutex fou_lock;
50 static inline struct fou *fou_from_sock(struct sock *sk)
52 return sk->sk_user_data;
55 static int fou_recv_pull(struct sk_buff *skb, struct fou *fou, size_t len)
57 /* Remove 'len' bytes from the packet (UDP header and
58 * FOU header if present).
60 if (fou->family == AF_INET)
61 ip_hdr(skb)->tot_len = htons(ntohs(ip_hdr(skb)->tot_len) - len);
63 ipv6_hdr(skb)->payload_len =
64 htons(ntohs(ipv6_hdr(skb)->payload_len) - len);
67 skb_postpull_rcsum(skb, udp_hdr(skb), len);
68 skb_reset_transport_header(skb);
69 return iptunnel_pull_offloads(skb);
72 static int fou_udp_recv(struct sock *sk, struct sk_buff *skb)
74 struct fou *fou = fou_from_sock(sk);
79 if (fou_recv_pull(skb, fou, sizeof(struct udphdr)))
82 return -fou->protocol;
89 static struct guehdr *gue_remcsum(struct sk_buff *skb, struct guehdr *guehdr,
90 void *data, size_t hdrlen, u8 ipproto,
94 size_t start = ntohs(pd[0]);
95 size_t offset = ntohs(pd[1]);
96 size_t plen = sizeof(struct udphdr) + hdrlen +
97 max_t(size_t, offset + sizeof(u16), start);
99 if (skb->remcsum_offload)
102 if (!pskb_may_pull(skb, plen))
104 guehdr = (struct guehdr *)&udp_hdr(skb)[1];
106 skb_remcsum_process(skb, (void *)guehdr + hdrlen,
107 start, offset, nopartial);
112 static int gue_control_message(struct sk_buff *skb, struct guehdr *guehdr)
119 static int gue_udp_recv(struct sock *sk, struct sk_buff *skb)
121 struct fou *fou = fou_from_sock(sk);
122 size_t len, optlen, hdrlen;
123 struct guehdr *guehdr;
131 len = sizeof(struct udphdr) + sizeof(struct guehdr);
132 if (!pskb_may_pull(skb, len))
135 guehdr = (struct guehdr *)&udp_hdr(skb)[1];
137 switch (guehdr->version) {
138 case 0: /* Full GUE header present */
142 /* Direct encapsulation of IPv4 or IPv6 */
146 switch (((struct iphdr *)guehdr)->version) {
157 if (fou_recv_pull(skb, fou, sizeof(struct udphdr)))
163 default: /* Undefined version */
167 optlen = guehdr->hlen << 2;
170 if (!pskb_may_pull(skb, len))
173 /* guehdr may change after pull */
174 guehdr = (struct guehdr *)&udp_hdr(skb)[1];
176 if (validate_gue_flags(guehdr, optlen))
179 hdrlen = sizeof(struct guehdr) + optlen;
181 if (fou->family == AF_INET)
182 ip_hdr(skb)->tot_len = htons(ntohs(ip_hdr(skb)->tot_len) - len);
184 ipv6_hdr(skb)->payload_len =
185 htons(ntohs(ipv6_hdr(skb)->payload_len) - len);
187 /* Pull csum through the guehdr now . This can be used if
188 * there is a remote checksum offload.
190 skb_postpull_rcsum(skb, udp_hdr(skb), len);
194 if (guehdr->flags & GUE_FLAG_PRIV) {
195 __be32 flags = *(__be32 *)(data + doffset);
197 doffset += GUE_LEN_PRIV;
199 if (flags & GUE_PFLAG_REMCSUM) {
200 guehdr = gue_remcsum(skb, guehdr, data + doffset,
201 hdrlen, guehdr->proto_ctype,
203 FOU_F_REMCSUM_NOPARTIAL));
209 doffset += GUE_PLEN_REMCSUM;
213 if (unlikely(guehdr->control))
214 return gue_control_message(skb, guehdr);
216 proto_ctype = guehdr->proto_ctype;
217 __skb_pull(skb, sizeof(struct udphdr) + hdrlen);
218 skb_reset_transport_header(skb);
220 if (iptunnel_pull_offloads(skb))
230 static struct sk_buff *fou_gro_receive(struct sock *sk,
231 struct list_head *head,
234 const struct net_offload __rcu **offloads;
235 u8 proto = fou_from_sock(sk)->protocol;
236 const struct net_offload *ops;
237 struct sk_buff *pp = NULL;
239 /* We can clear the encap_mark for FOU as we are essentially doing
240 * one of two possible things. We are either adding an L4 tunnel
241 * header to the outer L3 tunnel header, or we are simply
242 * treating the GRE tunnel header as though it is a UDP protocol
243 * specific header such as VXLAN or GENEVE.
245 NAPI_GRO_CB(skb)->encap_mark = 0;
247 /* Flag this frame as already having an outer encap header */
248 NAPI_GRO_CB(skb)->is_fou = 1;
250 offloads = NAPI_GRO_CB(skb)->is_ipv6 ? inet6_offloads : inet_offloads;
251 ops = rcu_dereference(offloads[proto]);
252 if (!ops || !ops->callbacks.gro_receive)
255 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 __rcu **offloads;
265 u8 proto = fou_from_sock(sk)->protocol;
266 const struct net_offload *ops;
269 offloads = NAPI_GRO_CB(skb)->is_ipv6 ? inet6_offloads : inet_offloads;
270 ops = rcu_dereference(offloads[proto]);
271 if (WARN_ON(!ops || !ops->callbacks.gro_complete))
274 err = ops->callbacks.gro_complete(skb, nhoff);
276 skb_set_inner_mac_header(skb, nhoff);
282 static struct guehdr *gue_gro_remcsum(struct sk_buff *skb, unsigned int off,
283 struct guehdr *guehdr, void *data,
284 size_t hdrlen, struct gro_remcsum *grc,
288 size_t start = ntohs(pd[0]);
289 size_t offset = ntohs(pd[1]);
291 if (skb->remcsum_offload)
294 if (!NAPI_GRO_CB(skb)->csum_valid)
297 guehdr = skb_gro_remcsum_process(skb, (void *)guehdr, off, hdrlen,
298 start, offset, grc, nopartial);
300 skb->remcsum_offload = 1;
305 static struct sk_buff *gue_gro_receive(struct sock *sk,
306 struct list_head *head,
309 const struct net_offload __rcu **offloads;
310 const struct net_offload *ops;
311 struct sk_buff *pp = NULL;
313 struct guehdr *guehdr;
314 size_t len, optlen, hdrlen, off;
318 struct fou *fou = fou_from_sock(sk);
319 struct gro_remcsum grc;
322 skb_gro_remcsum_init(&grc);
324 off = skb_gro_offset(skb);
325 len = off + sizeof(*guehdr);
327 guehdr = skb_gro_header_fast(skb, off);
328 if (skb_gro_header_hard(skb, len)) {
329 guehdr = skb_gro_header_slow(skb, len, off);
330 if (unlikely(!guehdr))
334 switch (guehdr->version) {
338 switch (((struct iphdr *)guehdr)->version) {
340 proto = IPPROTO_IPIP;
343 proto = IPPROTO_IPV6;
353 optlen = guehdr->hlen << 2;
356 if (skb_gro_header_hard(skb, len)) {
357 guehdr = skb_gro_header_slow(skb, len, off);
358 if (unlikely(!guehdr))
362 if (unlikely(guehdr->control) || guehdr->version != 0 ||
363 validate_gue_flags(guehdr, optlen))
366 hdrlen = sizeof(*guehdr) + optlen;
368 /* Adjust NAPI_GRO_CB(skb)->csum to account for guehdr,
369 * this is needed if there is a remote checkcsum offload.
371 skb_gro_postpull_rcsum(skb, guehdr, hdrlen);
375 if (guehdr->flags & GUE_FLAG_PRIV) {
376 __be32 flags = *(__be32 *)(data + doffset);
378 doffset += GUE_LEN_PRIV;
380 if (flags & GUE_PFLAG_REMCSUM) {
381 guehdr = gue_gro_remcsum(skb, off, guehdr,
382 data + doffset, hdrlen, &grc,
384 FOU_F_REMCSUM_NOPARTIAL));
391 doffset += GUE_PLEN_REMCSUM;
395 skb_gro_pull(skb, hdrlen);
397 list_for_each_entry(p, head, list) {
398 const struct guehdr *guehdr2;
400 if (!NAPI_GRO_CB(p)->same_flow)
403 guehdr2 = (struct guehdr *)(p->data + off);
405 /* Compare base GUE header to be equal (covers
406 * hlen, version, proto_ctype, and flags.
408 if (guehdr->word != guehdr2->word) {
409 NAPI_GRO_CB(p)->same_flow = 0;
413 /* Compare optional fields are the same. */
414 if (guehdr->hlen && memcmp(&guehdr[1], &guehdr2[1],
415 guehdr->hlen << 2)) {
416 NAPI_GRO_CB(p)->same_flow = 0;
421 proto = guehdr->proto_ctype;
425 /* We can clear the encap_mark for GUE as we are essentially doing
426 * one of two possible things. We are either adding an L4 tunnel
427 * header to the outer L3 tunnel header, or we are simply
428 * treating the GRE tunnel header as though it is a UDP protocol
429 * specific header such as VXLAN or GENEVE.
431 NAPI_GRO_CB(skb)->encap_mark = 0;
433 /* Flag this frame as already having an outer encap header */
434 NAPI_GRO_CB(skb)->is_fou = 1;
436 offloads = NAPI_GRO_CB(skb)->is_ipv6 ? inet6_offloads : inet_offloads;
437 ops = rcu_dereference(offloads[proto]);
438 if (WARN_ON_ONCE(!ops || !ops->callbacks.gro_receive))
441 pp = call_gro_receive(ops->callbacks.gro_receive, head, skb);
445 skb_gro_flush_final_remcsum(skb, pp, flush, &grc);
450 static int gue_gro_complete(struct sock *sk, struct sk_buff *skb, int nhoff)
452 struct guehdr *guehdr = (struct guehdr *)(skb->data + nhoff);
453 const struct net_offload __rcu **offloads;
454 const struct net_offload *ops;
455 unsigned int guehlen = 0;
459 switch (guehdr->version) {
461 proto = guehdr->proto_ctype;
462 guehlen = sizeof(*guehdr) + (guehdr->hlen << 2);
465 switch (((struct iphdr *)guehdr)->version) {
467 proto = IPPROTO_IPIP;
470 proto = IPPROTO_IPV6;
480 offloads = NAPI_GRO_CB(skb)->is_ipv6 ? inet6_offloads : inet_offloads;
481 ops = rcu_dereference(offloads[proto]);
482 if (WARN_ON(!ops || !ops->callbacks.gro_complete))
485 err = ops->callbacks.gro_complete(skb, nhoff + guehlen);
487 skb_set_inner_mac_header(skb, nhoff + guehlen);
493 static bool fou_cfg_cmp(struct fou *fou, struct fou_cfg *cfg)
495 struct sock *sk = fou->sock->sk;
496 struct udp_port_cfg *udp_cfg = &cfg->udp_config;
498 if (fou->family != udp_cfg->family ||
499 fou->port != udp_cfg->local_udp_port ||
500 sk->sk_dport != udp_cfg->peer_udp_port ||
501 sk->sk_bound_dev_if != udp_cfg->bind_ifindex)
504 if (fou->family == AF_INET) {
505 if (sk->sk_rcv_saddr != udp_cfg->local_ip.s_addr ||
506 sk->sk_daddr != udp_cfg->peer_ip.s_addr)
510 #if IS_ENABLED(CONFIG_IPV6)
512 if (ipv6_addr_cmp(&sk->sk_v6_rcv_saddr, &udp_cfg->local_ip6) ||
513 ipv6_addr_cmp(&sk->sk_v6_daddr, &udp_cfg->peer_ip6))
523 static int fou_add_to_port_list(struct net *net, struct fou *fou,
526 struct fou_net *fn = net_generic(net, fou_net_id);
529 mutex_lock(&fn->fou_lock);
530 list_for_each_entry(fout, &fn->fou_list, list) {
531 if (fou_cfg_cmp(fout, cfg)) {
532 mutex_unlock(&fn->fou_lock);
537 list_add(&fou->list, &fn->fou_list);
538 mutex_unlock(&fn->fou_lock);
543 static void fou_release(struct fou *fou)
545 struct socket *sock = fou->sock;
547 list_del(&fou->list);
548 udp_tunnel_sock_release(sock);
553 static int fou_create(struct net *net, struct fou_cfg *cfg,
554 struct socket **sockp)
556 struct socket *sock = NULL;
557 struct fou *fou = NULL;
559 struct udp_tunnel_sock_cfg tunnel_cfg;
562 /* Open UDP socket */
563 err = udp_sock_create(net, &cfg->udp_config, &sock);
567 /* Allocate FOU port structure */
568 fou = kzalloc(sizeof(*fou), GFP_KERNEL);
576 fou->port = cfg->udp_config.local_udp_port;
577 fou->family = cfg->udp_config.family;
578 fou->flags = cfg->flags;
579 fou->type = cfg->type;
582 memset(&tunnel_cfg, 0, sizeof(tunnel_cfg));
583 tunnel_cfg.encap_type = 1;
584 tunnel_cfg.sk_user_data = fou;
585 tunnel_cfg.encap_destroy = NULL;
587 /* Initial for fou type */
589 case FOU_ENCAP_DIRECT:
590 tunnel_cfg.encap_rcv = fou_udp_recv;
591 tunnel_cfg.gro_receive = fou_gro_receive;
592 tunnel_cfg.gro_complete = fou_gro_complete;
593 fou->protocol = cfg->protocol;
596 tunnel_cfg.encap_rcv = gue_udp_recv;
597 tunnel_cfg.gro_receive = gue_gro_receive;
598 tunnel_cfg.gro_complete = gue_gro_complete;
605 setup_udp_tunnel_sock(net, sock, &tunnel_cfg);
607 sk->sk_allocation = GFP_ATOMIC;
609 err = fou_add_to_port_list(net, fou, cfg);
621 udp_tunnel_sock_release(sock);
626 static int fou_destroy(struct net *net, struct fou_cfg *cfg)
628 struct fou_net *fn = net_generic(net, fou_net_id);
632 mutex_lock(&fn->fou_lock);
633 list_for_each_entry(fou, &fn->fou_list, list) {
634 if (fou_cfg_cmp(fou, cfg)) {
640 mutex_unlock(&fn->fou_lock);
645 static struct genl_family fou_nl_family;
647 static const struct nla_policy fou_nl_policy[FOU_ATTR_MAX + 1] = {
648 [FOU_ATTR_PORT] = { .type = NLA_U16, },
649 [FOU_ATTR_AF] = { .type = NLA_U8, },
650 [FOU_ATTR_IPPROTO] = { .type = NLA_U8, },
651 [FOU_ATTR_TYPE] = { .type = NLA_U8, },
652 [FOU_ATTR_REMCSUM_NOPARTIAL] = { .type = NLA_FLAG, },
653 [FOU_ATTR_LOCAL_V4] = { .type = NLA_U32, },
654 [FOU_ATTR_PEER_V4] = { .type = NLA_U32, },
655 [FOU_ATTR_LOCAL_V6] = { .len = sizeof(struct in6_addr), },
656 [FOU_ATTR_PEER_V6] = { .len = sizeof(struct in6_addr), },
657 [FOU_ATTR_PEER_PORT] = { .type = NLA_U16, },
658 [FOU_ATTR_IFINDEX] = { .type = NLA_S32, },
661 static int parse_nl_config(struct genl_info *info,
664 bool has_local = false, has_peer = false;
669 memset(cfg, 0, sizeof(*cfg));
671 cfg->udp_config.family = AF_INET;
673 if (info->attrs[FOU_ATTR_AF]) {
674 u8 family = nla_get_u8(info->attrs[FOU_ATTR_AF]);
680 cfg->udp_config.ipv6_v6only = 1;
683 return -EAFNOSUPPORT;
686 cfg->udp_config.family = family;
689 if (info->attrs[FOU_ATTR_PORT]) {
690 port = nla_get_be16(info->attrs[FOU_ATTR_PORT]);
691 cfg->udp_config.local_udp_port = port;
694 if (info->attrs[FOU_ATTR_IPPROTO])
695 cfg->protocol = nla_get_u8(info->attrs[FOU_ATTR_IPPROTO]);
697 if (info->attrs[FOU_ATTR_TYPE])
698 cfg->type = nla_get_u8(info->attrs[FOU_ATTR_TYPE]);
700 if (info->attrs[FOU_ATTR_REMCSUM_NOPARTIAL])
701 cfg->flags |= FOU_F_REMCSUM_NOPARTIAL;
703 if (cfg->udp_config.family == AF_INET) {
704 if (info->attrs[FOU_ATTR_LOCAL_V4]) {
705 attr = info->attrs[FOU_ATTR_LOCAL_V4];
706 cfg->udp_config.local_ip.s_addr = nla_get_in_addr(attr);
710 if (info->attrs[FOU_ATTR_PEER_V4]) {
711 attr = info->attrs[FOU_ATTR_PEER_V4];
712 cfg->udp_config.peer_ip.s_addr = nla_get_in_addr(attr);
715 #if IS_ENABLED(CONFIG_IPV6)
717 if (info->attrs[FOU_ATTR_LOCAL_V6]) {
718 attr = info->attrs[FOU_ATTR_LOCAL_V6];
719 cfg->udp_config.local_ip6 = nla_get_in6_addr(attr);
723 if (info->attrs[FOU_ATTR_PEER_V6]) {
724 attr = info->attrs[FOU_ATTR_PEER_V6];
725 cfg->udp_config.peer_ip6 = nla_get_in6_addr(attr);
732 if (info->attrs[FOU_ATTR_PEER_PORT]) {
733 port = nla_get_be16(info->attrs[FOU_ATTR_PEER_PORT]);
734 cfg->udp_config.peer_udp_port = port;
740 if (info->attrs[FOU_ATTR_IFINDEX]) {
744 ifindex = nla_get_s32(info->attrs[FOU_ATTR_IFINDEX]);
746 cfg->udp_config.bind_ifindex = ifindex;
752 static int fou_nl_cmd_add_port(struct sk_buff *skb, struct genl_info *info)
754 struct net *net = genl_info_net(info);
758 err = parse_nl_config(info, &cfg);
762 return fou_create(net, &cfg, NULL);
765 static int fou_nl_cmd_rm_port(struct sk_buff *skb, struct genl_info *info)
767 struct net *net = genl_info_net(info);
771 err = parse_nl_config(info, &cfg);
775 return fou_destroy(net, &cfg);
778 static int fou_fill_info(struct fou *fou, struct sk_buff *msg)
780 struct sock *sk = fou->sock->sk;
782 if (nla_put_u8(msg, FOU_ATTR_AF, fou->sock->sk->sk_family) ||
783 nla_put_be16(msg, FOU_ATTR_PORT, fou->port) ||
784 nla_put_be16(msg, FOU_ATTR_PEER_PORT, sk->sk_dport) ||
785 nla_put_u8(msg, FOU_ATTR_IPPROTO, fou->protocol) ||
786 nla_put_u8(msg, FOU_ATTR_TYPE, fou->type) ||
787 nla_put_s32(msg, FOU_ATTR_IFINDEX, sk->sk_bound_dev_if))
790 if (fou->flags & FOU_F_REMCSUM_NOPARTIAL)
791 if (nla_put_flag(msg, FOU_ATTR_REMCSUM_NOPARTIAL))
794 if (fou->sock->sk->sk_family == AF_INET) {
795 if (nla_put_in_addr(msg, FOU_ATTR_LOCAL_V4, sk->sk_rcv_saddr))
798 if (nla_put_in_addr(msg, FOU_ATTR_PEER_V4, sk->sk_daddr))
800 #if IS_ENABLED(CONFIG_IPV6)
802 if (nla_put_in6_addr(msg, FOU_ATTR_LOCAL_V6,
803 &sk->sk_v6_rcv_saddr))
806 if (nla_put_in6_addr(msg, FOU_ATTR_PEER_V6, &sk->sk_v6_daddr))
814 static int fou_dump_info(struct fou *fou, u32 portid, u32 seq,
815 u32 flags, struct sk_buff *skb, u8 cmd)
819 hdr = genlmsg_put(skb, portid, seq, &fou_nl_family, flags, cmd);
823 if (fou_fill_info(fou, skb) < 0)
824 goto nla_put_failure;
826 genlmsg_end(skb, hdr);
830 genlmsg_cancel(skb, hdr);
834 static int fou_nl_cmd_get_port(struct sk_buff *skb, struct genl_info *info)
836 struct net *net = genl_info_net(info);
837 struct fou_net *fn = net_generic(net, fou_net_id);
845 ret = parse_nl_config(info, &cfg);
848 port = cfg.udp_config.local_udp_port;
852 family = cfg.udp_config.family;
853 if (family != AF_INET && family != AF_INET6)
856 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
861 mutex_lock(&fn->fou_lock);
862 list_for_each_entry(fout, &fn->fou_list, list) {
863 if (fou_cfg_cmp(fout, &cfg)) {
864 ret = fou_dump_info(fout, info->snd_portid,
865 info->snd_seq, 0, msg,
870 mutex_unlock(&fn->fou_lock);
874 return genlmsg_reply(msg, info);
881 static int fou_nl_dump(struct sk_buff *skb, struct netlink_callback *cb)
883 struct net *net = sock_net(skb->sk);
884 struct fou_net *fn = net_generic(net, fou_net_id);
888 mutex_lock(&fn->fou_lock);
889 list_for_each_entry(fout, &fn->fou_list, list) {
890 if (idx++ < cb->args[0])
892 ret = fou_dump_info(fout, NETLINK_CB(cb->skb).portid,
893 cb->nlh->nlmsg_seq, NLM_F_MULTI,
898 mutex_unlock(&fn->fou_lock);
904 static const struct genl_small_ops fou_nl_ops[] = {
907 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
908 .doit = fou_nl_cmd_add_port,
909 .flags = GENL_ADMIN_PERM,
913 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
914 .doit = fou_nl_cmd_rm_port,
915 .flags = GENL_ADMIN_PERM,
919 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
920 .doit = fou_nl_cmd_get_port,
921 .dumpit = fou_nl_dump,
925 static struct genl_family fou_nl_family __ro_after_init = {
927 .name = FOU_GENL_NAME,
928 .version = FOU_GENL_VERSION,
929 .maxattr = FOU_ATTR_MAX,
930 .policy = fou_nl_policy,
932 .module = THIS_MODULE,
933 .small_ops = fou_nl_ops,
934 .n_small_ops = ARRAY_SIZE(fou_nl_ops),
937 size_t fou_encap_hlen(struct ip_tunnel_encap *e)
939 return sizeof(struct udphdr);
941 EXPORT_SYMBOL(fou_encap_hlen);
943 size_t gue_encap_hlen(struct ip_tunnel_encap *e)
946 bool need_priv = false;
948 len = sizeof(struct udphdr) + sizeof(struct guehdr);
950 if (e->flags & TUNNEL_ENCAP_FLAG_REMCSUM) {
951 len += GUE_PLEN_REMCSUM;
955 len += need_priv ? GUE_LEN_PRIV : 0;
959 EXPORT_SYMBOL(gue_encap_hlen);
961 int __fou_build_header(struct sk_buff *skb, struct ip_tunnel_encap *e,
962 u8 *protocol, __be16 *sport, int type)
966 err = iptunnel_handle_offloads(skb, type);
970 *sport = e->sport ? : udp_flow_src_port(dev_net(skb->dev),
975 EXPORT_SYMBOL(__fou_build_header);
977 int __gue_build_header(struct sk_buff *skb, struct ip_tunnel_encap *e,
978 u8 *protocol, __be16 *sport, int type)
980 struct guehdr *guehdr;
981 size_t hdrlen, optlen = 0;
983 bool need_priv = false;
986 if ((e->flags & TUNNEL_ENCAP_FLAG_REMCSUM) &&
987 skb->ip_summed == CHECKSUM_PARTIAL) {
988 optlen += GUE_PLEN_REMCSUM;
989 type |= SKB_GSO_TUNNEL_REMCSUM;
993 optlen += need_priv ? GUE_LEN_PRIV : 0;
995 err = iptunnel_handle_offloads(skb, type);
999 /* Get source port (based on flow hash) before skb_push */
1000 *sport = e->sport ? : udp_flow_src_port(dev_net(skb->dev),
1003 hdrlen = sizeof(struct guehdr) + optlen;
1005 skb_push(skb, hdrlen);
1007 guehdr = (struct guehdr *)skb->data;
1009 guehdr->control = 0;
1010 guehdr->version = 0;
1011 guehdr->hlen = optlen >> 2;
1013 guehdr->proto_ctype = *protocol;
1018 __be32 *flags = data;
1020 guehdr->flags |= GUE_FLAG_PRIV;
1022 data += GUE_LEN_PRIV;
1024 if (type & SKB_GSO_TUNNEL_REMCSUM) {
1025 u16 csum_start = skb_checksum_start_offset(skb);
1028 if (csum_start < hdrlen)
1031 csum_start -= hdrlen;
1032 pd[0] = htons(csum_start);
1033 pd[1] = htons(csum_start + skb->csum_offset);
1035 if (!skb_is_gso(skb)) {
1036 skb->ip_summed = CHECKSUM_NONE;
1037 skb->encapsulation = 0;
1040 *flags |= GUE_PFLAG_REMCSUM;
1041 data += GUE_PLEN_REMCSUM;
1048 EXPORT_SYMBOL(__gue_build_header);
1050 #ifdef CONFIG_NET_FOU_IP_TUNNELS
1052 static void fou_build_udp(struct sk_buff *skb, struct ip_tunnel_encap *e,
1053 struct flowi4 *fl4, u8 *protocol, __be16 sport)
1057 skb_push(skb, sizeof(struct udphdr));
1058 skb_reset_transport_header(skb);
1062 uh->dest = e->dport;
1064 uh->len = htons(skb->len);
1065 udp_set_csum(!(e->flags & TUNNEL_ENCAP_FLAG_CSUM), skb,
1066 fl4->saddr, fl4->daddr, skb->len);
1068 *protocol = IPPROTO_UDP;
1071 static int fou_build_header(struct sk_buff *skb, struct ip_tunnel_encap *e,
1072 u8 *protocol, struct flowi4 *fl4)
1074 int type = e->flags & TUNNEL_ENCAP_FLAG_CSUM ? SKB_GSO_UDP_TUNNEL_CSUM :
1079 err = __fou_build_header(skb, e, protocol, &sport, type);
1083 fou_build_udp(skb, e, fl4, protocol, sport);
1088 static int gue_build_header(struct sk_buff *skb, struct ip_tunnel_encap *e,
1089 u8 *protocol, struct flowi4 *fl4)
1091 int type = e->flags & TUNNEL_ENCAP_FLAG_CSUM ? SKB_GSO_UDP_TUNNEL_CSUM :
1096 err = __gue_build_header(skb, e, protocol, &sport, type);
1100 fou_build_udp(skb, e, fl4, protocol, sport);
1105 static int gue_err_proto_handler(int proto, struct sk_buff *skb, u32 info)
1107 const struct net_protocol *ipprot = rcu_dereference(inet_protos[proto]);
1109 if (ipprot && ipprot->err_handler) {
1110 if (!ipprot->err_handler(skb, info))
1117 static int gue_err(struct sk_buff *skb, u32 info)
1119 int transport_offset = skb_transport_offset(skb);
1120 struct guehdr *guehdr;
1124 len = sizeof(struct udphdr) + sizeof(struct guehdr);
1125 if (!pskb_may_pull(skb, transport_offset + len))
1128 guehdr = (struct guehdr *)&udp_hdr(skb)[1];
1130 switch (guehdr->version) {
1131 case 0: /* Full GUE header present */
1134 /* Direct encapsulation of IPv4 or IPv6 */
1135 skb_set_transport_header(skb, -(int)sizeof(struct icmphdr));
1137 switch (((struct iphdr *)guehdr)->version) {
1139 ret = gue_err_proto_handler(IPPROTO_IPIP, skb, info);
1141 #if IS_ENABLED(CONFIG_IPV6)
1143 ret = gue_err_proto_handler(IPPROTO_IPV6, skb, info);
1151 default: /* Undefined version */
1155 if (guehdr->control)
1158 optlen = guehdr->hlen << 2;
1160 if (!pskb_may_pull(skb, transport_offset + len + optlen))
1163 guehdr = (struct guehdr *)&udp_hdr(skb)[1];
1164 if (validate_gue_flags(guehdr, optlen))
1167 /* Handling exceptions for direct UDP encapsulation in GUE would lead to
1168 * recursion. Besides, this kind of encapsulation can't even be
1169 * configured currently. Discard this.
1171 if (guehdr->proto_ctype == IPPROTO_UDP ||
1172 guehdr->proto_ctype == IPPROTO_UDPLITE)
1175 skb_set_transport_header(skb, -(int)sizeof(struct icmphdr));
1176 ret = gue_err_proto_handler(guehdr->proto_ctype, skb, info);
1179 skb_set_transport_header(skb, transport_offset);
1184 static const struct ip_tunnel_encap_ops fou_iptun_ops = {
1185 .encap_hlen = fou_encap_hlen,
1186 .build_header = fou_build_header,
1187 .err_handler = gue_err,
1190 static const struct ip_tunnel_encap_ops gue_iptun_ops = {
1191 .encap_hlen = gue_encap_hlen,
1192 .build_header = gue_build_header,
1193 .err_handler = gue_err,
1196 static int ip_tunnel_encap_add_fou_ops(void)
1200 ret = ip_tunnel_encap_add_ops(&fou_iptun_ops, TUNNEL_ENCAP_FOU);
1202 pr_err("can't add fou ops\n");
1206 ret = ip_tunnel_encap_add_ops(&gue_iptun_ops, TUNNEL_ENCAP_GUE);
1208 pr_err("can't add gue ops\n");
1209 ip_tunnel_encap_del_ops(&fou_iptun_ops, TUNNEL_ENCAP_FOU);
1216 static void ip_tunnel_encap_del_fou_ops(void)
1218 ip_tunnel_encap_del_ops(&fou_iptun_ops, TUNNEL_ENCAP_FOU);
1219 ip_tunnel_encap_del_ops(&gue_iptun_ops, TUNNEL_ENCAP_GUE);
1224 static int ip_tunnel_encap_add_fou_ops(void)
1229 static void ip_tunnel_encap_del_fou_ops(void)
1235 static __net_init int fou_init_net(struct net *net)
1237 struct fou_net *fn = net_generic(net, fou_net_id);
1239 INIT_LIST_HEAD(&fn->fou_list);
1240 mutex_init(&fn->fou_lock);
1244 static __net_exit void fou_exit_net(struct net *net)
1246 struct fou_net *fn = net_generic(net, fou_net_id);
1247 struct fou *fou, *next;
1249 /* Close all the FOU sockets */
1250 mutex_lock(&fn->fou_lock);
1251 list_for_each_entry_safe(fou, next, &fn->fou_list, list)
1253 mutex_unlock(&fn->fou_lock);
1256 static struct pernet_operations fou_net_ops = {
1257 .init = fou_init_net,
1258 .exit = fou_exit_net,
1260 .size = sizeof(struct fou_net),
1263 static int __init fou_init(void)
1267 ret = register_pernet_device(&fou_net_ops);
1271 ret = genl_register_family(&fou_nl_family);
1275 ret = ip_tunnel_encap_add_fou_ops();
1279 genl_unregister_family(&fou_nl_family);
1281 unregister_pernet_device(&fou_net_ops);
1286 static void __exit fou_fini(void)
1288 ip_tunnel_encap_del_fou_ops();
1289 genl_unregister_family(&fou_nl_family);
1290 unregister_pernet_device(&fou_net_ops);
1293 module_init(fou_init);
1294 module_exit(fou_fini);
1296 MODULE_LICENSE("GPL");
1297 MODULE_DESCRIPTION("Foo over UDP");