2 * GRE over IPv4 demultiplexer driver
4 * Authors: Dmitry Kozlov (xeb@mail.ru)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
13 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15 #include <linux/module.h>
17 #include <linux/icmp.h>
18 #include <linux/kernel.h>
19 #include <linux/kmod.h>
20 #include <linux/skbuff.h>
23 #include <linux/netdevice.h>
24 #include <linux/if_tunnel.h>
25 #include <linux/spinlock.h>
26 #include <net/protocol.h>
28 #include <net/erspan.h>
31 #include <net/route.h>
34 static const struct gre_protocol __rcu *gre_proto[GREPROTO_MAX] __read_mostly;
36 int gre_add_protocol(const struct gre_protocol *proto, u8 version)
38 if (version >= GREPROTO_MAX)
41 return (cmpxchg((const struct gre_protocol **)&gre_proto[version], NULL, proto) == NULL) ?
44 EXPORT_SYMBOL_GPL(gre_add_protocol);
46 int gre_del_protocol(const struct gre_protocol *proto, u8 version)
50 if (version >= GREPROTO_MAX)
53 ret = (cmpxchg((const struct gre_protocol **)&gre_proto[version], proto, NULL) == proto) ?
62 EXPORT_SYMBOL_GPL(gre_del_protocol);
64 /* Fills in tpi and returns header length to be pulled.
65 * Note that caller must use pskb_may_pull() before pulling GRE header.
67 int gre_parse_header(struct sk_buff *skb, struct tnl_ptk_info *tpi,
68 bool *csum_err, __be16 proto, int nhs)
70 const struct gre_base_hdr *greh;
74 if (unlikely(!pskb_may_pull(skb, nhs + sizeof(struct gre_base_hdr))))
77 greh = (struct gre_base_hdr *)(skb->data + nhs);
78 if (unlikely(greh->flags & (GRE_VERSION | GRE_ROUTING)))
81 tpi->flags = gre_flags_to_tnl_flags(greh->flags);
82 hdr_len = gre_calc_hlen(tpi->flags);
84 if (!pskb_may_pull(skb, nhs + hdr_len))
87 greh = (struct gre_base_hdr *)(skb->data + nhs);
88 tpi->proto = greh->protocol;
90 options = (__be32 *)(greh + 1);
91 if (greh->flags & GRE_CSUM) {
92 if (!skb_checksum_simple_validate(skb)) {
93 skb_checksum_try_convert(skb, IPPROTO_GRE, 0,
95 } else if (csum_err) {
103 if (greh->flags & GRE_KEY) {
109 if (unlikely(greh->flags & GRE_SEQ)) {
115 /* WCCP version 1 and 2 protocol decoding.
116 * - Change protocol to IPv4/IPv6
117 * - When dealing with WCCPv2, Skip extra 4 bytes in GRE header
119 if (greh->flags == 0 && tpi->proto == htons(ETH_P_WCCP)) {
122 val = skb_header_pointer(skb, nhs + hdr_len,
123 sizeof(_val), &_val);
127 if ((*val & 0xF0) != 0x40)
130 tpi->hdr_len = hdr_len;
132 /* ERSPAN ver 1 and 2 protocol sets GRE key field
133 * to 0 and sets the configured key in the
134 * inner erspan header field
136 if ((greh->protocol == htons(ETH_P_ERSPAN) && hdr_len != 4) ||
137 greh->protocol == htons(ETH_P_ERSPAN2)) {
138 struct erspan_base_hdr *ershdr;
140 if (!pskb_may_pull(skb, nhs + hdr_len + sizeof(*ershdr)))
143 ershdr = (struct erspan_base_hdr *)(skb->data + nhs + hdr_len);
144 tpi->key = cpu_to_be32(get_session_id(ershdr));
149 EXPORT_SYMBOL(gre_parse_header);
151 static int gre_rcv(struct sk_buff *skb)
153 const struct gre_protocol *proto;
157 if (!pskb_may_pull(skb, 12))
160 ver = skb->data[1]&0x7f;
161 if (ver >= GREPROTO_MAX)
165 proto = rcu_dereference(gre_proto[ver]);
166 if (!proto || !proto->handler)
168 ret = proto->handler(skb);
179 static void gre_err(struct sk_buff *skb, u32 info)
181 const struct gre_protocol *proto;
182 const struct iphdr *iph = (const struct iphdr *)skb->data;
183 u8 ver = skb->data[(iph->ihl<<2) + 1]&0x7f;
185 if (ver >= GREPROTO_MAX)
189 proto = rcu_dereference(gre_proto[ver]);
190 if (proto && proto->err_handler)
191 proto->err_handler(skb, info);
195 static const struct net_protocol net_gre_protocol = {
197 .err_handler = gre_err,
201 static int __init gre_init(void)
203 pr_info("GRE over IPv4 demultiplexor driver\n");
205 if (inet_add_protocol(&net_gre_protocol, IPPROTO_GRE) < 0) {
206 pr_err("can't add protocol\n");
212 static void __exit gre_exit(void)
214 inet_del_protocol(&net_gre_protocol, IPPROTO_GRE);
217 module_init(gre_init);
218 module_exit(gre_exit);
220 MODULE_DESCRIPTION("GRE over IPv4 demultiplexer driver");
221 MODULE_AUTHOR("D. Kozlov (xeb@mail.ru)");
222 MODULE_LICENSE("GPL");