2 * GRE over IPv4 demultiplexer driver
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 #include <linux/module.h>
14 #include <linux/kernel.h>
15 #include <linux/kmod.h>
16 #include <linux/skbuff.h>
19 #include <linux/netdevice.h>
20 #include <linux/spinlock.h>
21 #include <net/protocol.h>
25 static const struct gre_protocol __rcu *gre_proto[GREPROTO_MAX] __read_mostly;
26 static DEFINE_SPINLOCK(gre_proto_lock);
28 int gre_add_protocol(const struct gre_protocol *proto, u8 version)
30 if (version >= GREPROTO_MAX)
33 spin_lock(&gre_proto_lock);
34 if (gre_proto[version])
37 RCU_INIT_POINTER(gre_proto[version], proto);
38 spin_unlock(&gre_proto_lock);
42 spin_unlock(&gre_proto_lock);
46 EXPORT_SYMBOL_GPL(gre_add_protocol);
48 int gre_del_protocol(const struct gre_protocol *proto, u8 version)
50 if (version >= GREPROTO_MAX)
53 spin_lock(&gre_proto_lock);
54 if (rcu_dereference_protected(gre_proto[version],
55 lockdep_is_held(&gre_proto_lock)) != proto)
57 RCU_INIT_POINTER(gre_proto[version], NULL);
58 spin_unlock(&gre_proto_lock);
63 spin_unlock(&gre_proto_lock);
67 EXPORT_SYMBOL_GPL(gre_del_protocol);
69 static int gre_rcv(struct sk_buff *skb)
71 const struct gre_protocol *proto;
75 if (!pskb_may_pull(skb, 12))
78 ver = skb->data[1]&0x7f;
79 if (ver >= GREPROTO_MAX)
83 proto = rcu_dereference(gre_proto[ver]);
84 if (!proto || !proto->handler)
86 ret = proto->handler(skb);
97 static void gre_err(struct sk_buff *skb, u32 info)
99 const struct gre_protocol *proto;
100 const struct iphdr *iph = (const struct iphdr *)skb->data;
101 u8 ver = skb->data[(iph->ihl<<2) + 1]&0x7f;
103 if (ver >= GREPROTO_MAX)
107 proto = rcu_dereference(gre_proto[ver]);
108 if (proto && proto->err_handler)
109 proto->err_handler(skb, info);
113 static const struct net_protocol net_gre_protocol = {
115 .err_handler = gre_err,
119 static int __init gre_init(void)
121 pr_info("GRE over IPv4 demultiplexor driver");
123 if (inet_add_protocol(&net_gre_protocol, IPPROTO_GRE) < 0) {
124 pr_err("gre: can't add protocol\n");
131 static void __exit gre_exit(void)
133 inet_del_protocol(&net_gre_protocol, IPPROTO_GRE);
136 module_init(gre_init);
137 module_exit(gre_exit);
139 MODULE_DESCRIPTION("GRE over IPv4 demultiplexer driver");
141 MODULE_LICENSE("GPL");