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>
11 #include <net/ip6_tunnel.h>
12 #include <net/ip6_checksum.h>
13 #include <net/protocol.h>
15 #include <net/udp_tunnel.h>
17 #if IS_ENABLED(CONFIG_IPV6_FOU_TUNNEL)
19 static void fou6_build_udp(struct sk_buff *skb, struct ip_tunnel_encap *e,
20 struct flowi6 *fl6, u8 *protocol, __be16 sport)
24 skb_push(skb, sizeof(struct udphdr));
25 skb_reset_transport_header(skb);
31 uh->len = htons(skb->len);
32 udp6_set_csum(!(e->flags & TUNNEL_ENCAP_FLAG_CSUM6), skb,
33 &fl6->saddr, &fl6->daddr, skb->len);
35 *protocol = IPPROTO_UDP;
38 static int fou6_build_header(struct sk_buff *skb, struct ip_tunnel_encap *e,
39 u8 *protocol, struct flowi6 *fl6)
43 int type = e->flags & TUNNEL_ENCAP_FLAG_CSUM6 ?
44 SKB_GSO_UDP_TUNNEL_CSUM : SKB_GSO_UDP_TUNNEL;
46 err = __fou_build_header(skb, e, protocol, &sport, type);
50 fou6_build_udp(skb, e, fl6, protocol, sport);
55 static int gue6_build_header(struct sk_buff *skb, struct ip_tunnel_encap *e,
56 u8 *protocol, struct flowi6 *fl6)
60 int type = e->flags & TUNNEL_ENCAP_FLAG_CSUM6 ?
61 SKB_GSO_UDP_TUNNEL_CSUM : SKB_GSO_UDP_TUNNEL;
63 err = __gue_build_header(skb, e, protocol, &sport, type);
67 fou6_build_udp(skb, e, fl6, protocol, sport);
72 static const struct ip6_tnl_encap_ops fou_ip6tun_ops = {
73 .encap_hlen = fou_encap_hlen,
74 .build_header = fou6_build_header,
77 static const struct ip6_tnl_encap_ops gue_ip6tun_ops = {
78 .encap_hlen = gue_encap_hlen,
79 .build_header = gue6_build_header,
82 static int ip6_tnl_encap_add_fou_ops(void)
86 ret = ip6_tnl_encap_add_ops(&fou_ip6tun_ops, TUNNEL_ENCAP_FOU);
88 pr_err("can't add fou6 ops\n");
92 ret = ip6_tnl_encap_add_ops(&gue_ip6tun_ops, TUNNEL_ENCAP_GUE);
94 pr_err("can't add gue6 ops\n");
95 ip6_tnl_encap_del_ops(&fou_ip6tun_ops, TUNNEL_ENCAP_FOU);
102 static void ip6_tnl_encap_del_fou_ops(void)
104 ip6_tnl_encap_del_ops(&fou_ip6tun_ops, TUNNEL_ENCAP_FOU);
105 ip6_tnl_encap_del_ops(&gue_ip6tun_ops, TUNNEL_ENCAP_GUE);
110 static int ip6_tnl_encap_add_fou_ops(void)
115 static void ip6_tnl_encap_del_fou_ops(void)
121 static int __init fou6_init(void)
125 ret = ip6_tnl_encap_add_fou_ops();
130 static void __exit fou6_fini(void)
132 ip6_tnl_encap_del_fou_ops();
135 module_init(fou6_init);
136 module_exit(fou6_fini);
137 MODULE_AUTHOR("Tom Herbert <therbert@google.com>");
138 MODULE_LICENSE("GPL");