blob: 9a715f88b2f194e90a64c3b15449810e832b9b2c [file] [log] [blame]
Patrick McHardyf09943f2006-12-02 22:09:41 -08001/*
2 * ip_conntrack_proto_gre.c - Version 3.0
3 *
4 * Connection tracking protocol helper module for GRE.
5 *
6 * GRE is a generic encapsulation protocol, which is generally not very
7 * suited for NAT, as it has no protocol-specific part as port numbers.
8 *
9 * It has an optional key field, which may help us distinguishing two
10 * connections between the same two hosts.
11 *
12 * GRE is defined in RFC 1701 and RFC 1702, as well as RFC 2784
13 *
14 * PPTP is built on top of a modified version of GRE, and has a mandatory
15 * field called "CallID", which serves us for the same purpose as the key
16 * field in plain GRE.
17 *
18 * Documentation about PPTP can be found in RFC 2637
19 *
20 * (C) 2000-2005 by Harald Welte <laforge@gnumonks.org>
21 *
22 * Development of this code funded by Astaro AG (http://www.astaro.com/)
23 *
Patrick McHardyf229f6c2013-04-06 15:24:29 +020024 * (C) 2006-2012 Patrick McHardy <kaber@trash.net>
Patrick McHardyf09943f2006-12-02 22:09:41 -080025 */
26
27#include <linux/module.h>
28#include <linux/types.h>
29#include <linux/timer.h>
30#include <linux/list.h>
31#include <linux/seq_file.h>
32#include <linux/in.h>
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +020033#include <linux/netdevice.h>
Patrick McHardyf09943f2006-12-02 22:09:41 -080034#include <linux/skbuff.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +020036#include <net/dst.h>
37#include <net/net_namespace.h>
38#include <net/netns/generic.h>
Patrick McHardyf09943f2006-12-02 22:09:41 -080039#include <net/netfilter/nf_conntrack_l4proto.h>
40#include <net/netfilter/nf_conntrack_helper.h>
41#include <net/netfilter/nf_conntrack_core.h>
42#include <linux/netfilter/nf_conntrack_proto_gre.h>
43#include <linux/netfilter/nf_conntrack_pptp.h>
44
Pablo Neira Ayusob8883412012-02-28 18:56:39 +010045enum grep_conntrack {
46 GRE_CT_UNREPLIED,
47 GRE_CT_REPLIED,
48 GRE_CT_MAX
49};
50
51static unsigned int gre_timeouts[GRE_CT_MAX] = {
52 [GRE_CT_UNREPLIED] = 30*HZ,
53 [GRE_CT_REPLIED] = 180*HZ,
54};
Patrick McHardyf09943f2006-12-02 22:09:41 -080055
Eric Dumazetf99189b2009-11-17 10:42:49 +000056static int proto_gre_net_id __read_mostly;
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +020057struct netns_proto_gre {
Gao feng4f71d802012-05-28 21:04:21 +000058 struct nf_proto_net nf;
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +020059 rwlock_t keymap_lock;
60 struct list_head keymap_list;
Gao feng4f71d802012-05-28 21:04:21 +000061 unsigned int gre_timeouts[GRE_CT_MAX];
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +020062};
Patrick McHardyf09943f2006-12-02 22:09:41 -080063
Gao feng4f71d802012-05-28 21:04:21 +000064static inline struct netns_proto_gre *gre_pernet(struct net *net)
65{
66 return net_generic(net, proto_gre_net_id);
67}
68
Andrey Vagin8142b222014-03-31 18:14:18 +040069static void nf_ct_gre_keymap_flush(struct net *net)
Patrick McHardyf09943f2006-12-02 22:09:41 -080070{
Gao feng4f71d802012-05-28 21:04:21 +000071 struct netns_proto_gre *net_gre = gre_pernet(net);
Alexey Dobriyan51807e92008-09-07 18:20:36 -070072 struct nf_ct_gre_keymap *km, *tmp;
Patrick McHardyf09943f2006-12-02 22:09:41 -080073
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +020074 write_lock_bh(&net_gre->keymap_lock);
75 list_for_each_entry_safe(km, tmp, &net_gre->keymap_list, list) {
Alexey Dobriyan51807e92008-09-07 18:20:36 -070076 list_del(&km->list);
77 kfree(km);
Patrick McHardyf09943f2006-12-02 22:09:41 -080078 }
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +020079 write_unlock_bh(&net_gre->keymap_lock);
Patrick McHardyf09943f2006-12-02 22:09:41 -080080}
Patrick McHardyf09943f2006-12-02 22:09:41 -080081
82static inline int gre_key_cmpfn(const struct nf_ct_gre_keymap *km,
83 const struct nf_conntrack_tuple *t)
84{
85 return km->tuple.src.l3num == t->src.l3num &&
86 !memcmp(&km->tuple.src.u3, &t->src.u3, sizeof(t->src.u3)) &&
87 !memcmp(&km->tuple.dst.u3, &t->dst.u3, sizeof(t->dst.u3)) &&
88 km->tuple.dst.protonum == t->dst.protonum &&
89 km->tuple.dst.u.all == t->dst.u.all;
90}
91
92/* look up the source key for a given tuple */
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +020093static __be16 gre_keymap_lookup(struct net *net, struct nf_conntrack_tuple *t)
Patrick McHardyf09943f2006-12-02 22:09:41 -080094{
Gao feng4f71d802012-05-28 21:04:21 +000095 struct netns_proto_gre *net_gre = gre_pernet(net);
Patrick McHardyf09943f2006-12-02 22:09:41 -080096 struct nf_ct_gre_keymap *km;
97 __be16 key = 0;
98
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +020099 read_lock_bh(&net_gre->keymap_lock);
100 list_for_each_entry(km, &net_gre->keymap_list, list) {
Patrick McHardyf09943f2006-12-02 22:09:41 -0800101 if (gre_key_cmpfn(km, t)) {
102 key = km->tuple.src.u.gre.key;
103 break;
104 }
105 }
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +0200106 read_unlock_bh(&net_gre->keymap_lock);
Patrick McHardyf09943f2006-12-02 22:09:41 -0800107
Patrick McHardy0d537782007-07-07 22:39:38 -0700108 pr_debug("lookup src key 0x%x for ", key);
Jan Engelhardt3c9fba62008-04-14 11:15:54 +0200109 nf_ct_dump_tuple(t);
Patrick McHardyf09943f2006-12-02 22:09:41 -0800110
111 return key;
112}
113
114/* add a single keymap entry, associate with specified master ct */
115int nf_ct_gre_keymap_add(struct nf_conn *ct, enum ip_conntrack_dir dir,
116 struct nf_conntrack_tuple *t)
117{
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +0200118 struct net *net = nf_ct_net(ct);
Gao feng4f71d802012-05-28 21:04:21 +0000119 struct netns_proto_gre *net_gre = gre_pernet(net);
Pablo Neira Ayuso1afc5672012-06-07 12:11:50 +0200120 struct nf_ct_pptp_master *ct_pptp_info = nfct_help_data(ct);
Patrick McHardyf09943f2006-12-02 22:09:41 -0800121 struct nf_ct_gre_keymap **kmp, *km;
122
Pablo Neira Ayuso1afc5672012-06-07 12:11:50 +0200123 kmp = &ct_pptp_info->keymap[dir];
Patrick McHardyf09943f2006-12-02 22:09:41 -0800124 if (*kmp) {
125 /* check whether it's a retransmission */
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +0200126 read_lock_bh(&net_gre->keymap_lock);
127 list_for_each_entry(km, &net_gre->keymap_list, list) {
Alexey Dobriyan887464a2008-09-07 18:20:08 -0700128 if (gre_key_cmpfn(km, t) && km == *kmp) {
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +0200129 read_unlock_bh(&net_gre->keymap_lock);
Patrick McHardyf09943f2006-12-02 22:09:41 -0800130 return 0;
Alexey Dobriyan887464a2008-09-07 18:20:08 -0700131 }
Patrick McHardyf09943f2006-12-02 22:09:41 -0800132 }
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +0200133 read_unlock_bh(&net_gre->keymap_lock);
Patrick McHardy0d537782007-07-07 22:39:38 -0700134 pr_debug("trying to override keymap_%s for ct %p\n",
135 dir == IP_CT_DIR_REPLY ? "reply" : "orig", ct);
Patrick McHardyf09943f2006-12-02 22:09:41 -0800136 return -EEXIST;
137 }
138
139 km = kmalloc(sizeof(*km), GFP_ATOMIC);
140 if (!km)
141 return -ENOMEM;
142 memcpy(&km->tuple, t, sizeof(*t));
143 *kmp = km;
144
Patrick McHardy0d537782007-07-07 22:39:38 -0700145 pr_debug("adding new entry %p: ", km);
Jan Engelhardt3c9fba62008-04-14 11:15:54 +0200146 nf_ct_dump_tuple(&km->tuple);
Patrick McHardyf09943f2006-12-02 22:09:41 -0800147
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +0200148 write_lock_bh(&net_gre->keymap_lock);
149 list_add_tail(&km->list, &net_gre->keymap_list);
150 write_unlock_bh(&net_gre->keymap_lock);
Patrick McHardyf09943f2006-12-02 22:09:41 -0800151
152 return 0;
153}
154EXPORT_SYMBOL_GPL(nf_ct_gre_keymap_add);
155
156/* destroy the keymap entries associated with specified master ct */
157void nf_ct_gre_keymap_destroy(struct nf_conn *ct)
158{
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +0200159 struct net *net = nf_ct_net(ct);
Gao feng4f71d802012-05-28 21:04:21 +0000160 struct netns_proto_gre *net_gre = gre_pernet(net);
Pablo Neira Ayuso1afc5672012-06-07 12:11:50 +0200161 struct nf_ct_pptp_master *ct_pptp_info = nfct_help_data(ct);
Patrick McHardyf09943f2006-12-02 22:09:41 -0800162 enum ip_conntrack_dir dir;
163
Patrick McHardy0d537782007-07-07 22:39:38 -0700164 pr_debug("entering for ct %p\n", ct);
Patrick McHardyf09943f2006-12-02 22:09:41 -0800165
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +0200166 write_lock_bh(&net_gre->keymap_lock);
Patrick McHardyf09943f2006-12-02 22:09:41 -0800167 for (dir = IP_CT_DIR_ORIGINAL; dir < IP_CT_DIR_MAX; dir++) {
Pablo Neira Ayuso1afc5672012-06-07 12:11:50 +0200168 if (ct_pptp_info->keymap[dir]) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700169 pr_debug("removing %p from list\n",
Pablo Neira Ayuso1afc5672012-06-07 12:11:50 +0200170 ct_pptp_info->keymap[dir]);
171 list_del(&ct_pptp_info->keymap[dir]->list);
172 kfree(ct_pptp_info->keymap[dir]);
173 ct_pptp_info->keymap[dir] = NULL;
Patrick McHardyf09943f2006-12-02 22:09:41 -0800174 }
175 }
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +0200176 write_unlock_bh(&net_gre->keymap_lock);
Patrick McHardyf09943f2006-12-02 22:09:41 -0800177}
178EXPORT_SYMBOL_GPL(nf_ct_gre_keymap_destroy);
179
180/* PUBLIC CONNTRACK PROTO HELPER FUNCTIONS */
181
182/* invert gre part of tuple */
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200183static bool gre_invert_tuple(struct nf_conntrack_tuple *tuple,
184 const struct nf_conntrack_tuple *orig)
Patrick McHardyf09943f2006-12-02 22:09:41 -0800185{
186 tuple->dst.u.gre.key = orig->src.u.gre.key;
187 tuple->src.u.gre.key = orig->dst.u.gre.key;
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200188 return true;
Patrick McHardyf09943f2006-12-02 22:09:41 -0800189}
190
191/* gre hdr info to tuple */
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200192static bool gre_pkt_to_tuple(const struct sk_buff *skb, unsigned int dataoff,
Eric W. Biedermana31f1ad2015-09-18 14:33:04 -0500193 struct net *net, struct nf_conntrack_tuple *tuple)
Patrick McHardyf09943f2006-12-02 22:09:41 -0800194{
Gao Fengc579a9e2016-08-25 23:08:47 +0800195 const struct pptp_gre_header *pgrehdr;
196 struct pptp_gre_header _pgrehdr;
Patrick McHardyf09943f2006-12-02 22:09:41 -0800197 __be16 srckey;
Gao Fengc579a9e2016-08-25 23:08:47 +0800198 const struct gre_base_hdr *grehdr;
199 struct gre_base_hdr _grehdr;
Patrick McHardyf09943f2006-12-02 22:09:41 -0800200
201 /* first only delinearize old RFC1701 GRE header */
202 grehdr = skb_header_pointer(skb, dataoff, sizeof(_grehdr), &_grehdr);
Gao Fengc579a9e2016-08-25 23:08:47 +0800203 if (!grehdr || (grehdr->flags & GRE_VERSION) != GRE_VERSION_1) {
Patrick McHardyf09943f2006-12-02 22:09:41 -0800204 /* try to behave like "nf_conntrack_proto_generic" */
205 tuple->src.u.all = 0;
206 tuple->dst.u.all = 0;
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200207 return true;
Patrick McHardyf09943f2006-12-02 22:09:41 -0800208 }
209
210 /* PPTP header is variable length, only need up to the call_id field */
211 pgrehdr = skb_header_pointer(skb, dataoff, 8, &_pgrehdr);
212 if (!pgrehdr)
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200213 return true;
Patrick McHardyf09943f2006-12-02 22:09:41 -0800214
Gao Fengecc65692016-08-25 23:08:11 +0800215 if (grehdr->protocol != GRE_PROTO_PPP) {
Gao Fengc579a9e2016-08-25 23:08:47 +0800216 pr_debug("Unsupported GRE proto(0x%x)\n", ntohs(grehdr->protocol));
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200217 return false;
Patrick McHardyf09943f2006-12-02 22:09:41 -0800218 }
219
220 tuple->dst.u.gre.key = pgrehdr->call_id;
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +0200221 srckey = gre_keymap_lookup(net, tuple);
Patrick McHardyf09943f2006-12-02 22:09:41 -0800222 tuple->src.u.gre.key = srckey;
223
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200224 return true;
Patrick McHardyf09943f2006-12-02 22:09:41 -0800225}
226
227/* print gre part of tuple */
Joe Perches824f1fb2014-09-29 16:08:22 -0700228static void gre_print_tuple(struct seq_file *s,
229 const struct nf_conntrack_tuple *tuple)
Patrick McHardyf09943f2006-12-02 22:09:41 -0800230{
Joe Perches824f1fb2014-09-29 16:08:22 -0700231 seq_printf(s, "srckey=0x%x dstkey=0x%x ",
232 ntohs(tuple->src.u.gre.key),
233 ntohs(tuple->dst.u.gre.key));
Patrick McHardyf09943f2006-12-02 22:09:41 -0800234}
235
236/* print private data for conntrack */
Steven Rostedt (Red Hat)37246a52014-10-27 16:02:47 -0400237static void gre_print_conntrack(struct seq_file *s, struct nf_conn *ct)
Patrick McHardyf09943f2006-12-02 22:09:41 -0800238{
Steven Rostedt (Red Hat)37246a52014-10-27 16:02:47 -0400239 seq_printf(s, "timeout=%u, stream_timeout=%u ",
240 (ct->proto.gre.timeout / HZ),
241 (ct->proto.gre.stream_timeout / HZ));
Patrick McHardyf09943f2006-12-02 22:09:41 -0800242}
243
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +0100244static unsigned int *gre_get_timeouts(struct net *net)
245{
Gao feng4f71d802012-05-28 21:04:21 +0000246 return gre_pernet(net)->gre_timeouts;
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +0100247}
248
Patrick McHardyf09943f2006-12-02 22:09:41 -0800249/* Returns verdict for packet, and may modify conntrack */
250static int gre_packet(struct nf_conn *ct,
251 const struct sk_buff *skb,
252 unsigned int dataoff,
253 enum ip_conntrack_info ctinfo,
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200254 u_int8_t pf,
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +0100255 unsigned int hooknum,
256 unsigned int *timeouts)
Patrick McHardyf09943f2006-12-02 22:09:41 -0800257{
258 /* If we've seen traffic both ways, this is a GRE connection.
259 * Extend timeout. */
260 if (ct->status & IPS_SEEN_REPLY) {
261 nf_ct_refresh_acct(ct, ctinfo, skb,
262 ct->proto.gre.stream_timeout);
263 /* Also, more likely to be important, and not a probe. */
Florian Westphal98d9ae82011-09-30 16:38:29 +0200264 if (!test_and_set_bit(IPS_ASSURED_BIT, &ct->status))
265 nf_conntrack_event_cache(IPCT_ASSURED, ct);
Patrick McHardyf09943f2006-12-02 22:09:41 -0800266 } else
267 nf_ct_refresh_acct(ct, ctinfo, skb,
268 ct->proto.gre.timeout);
269
270 return NF_ACCEPT;
271}
272
273/* Called when a new connection for this protocol found. */
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200274static bool gre_new(struct nf_conn *ct, const struct sk_buff *skb,
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +0100275 unsigned int dataoff, unsigned int *timeouts)
Patrick McHardyf09943f2006-12-02 22:09:41 -0800276{
Patrick McHardy0d537782007-07-07 22:39:38 -0700277 pr_debug(": ");
Jan Engelhardt3c9fba62008-04-14 11:15:54 +0200278 nf_ct_dump_tuple(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
Patrick McHardyf09943f2006-12-02 22:09:41 -0800279
280 /* initialize to sane value. Ideally a conntrack helper
281 * (e.g. in case of pptp) is increasing them */
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +0100282 ct->proto.gre.stream_timeout = timeouts[GRE_CT_REPLIED];
283 ct->proto.gre.timeout = timeouts[GRE_CT_UNREPLIED];
Patrick McHardyf09943f2006-12-02 22:09:41 -0800284
Jan Engelhardt09f263c2008-04-14 11:15:53 +0200285 return true;
Patrick McHardyf09943f2006-12-02 22:09:41 -0800286}
287
288/* Called when a conntrack entry has already been removed from the hashes
289 * and is about to be deleted from memory */
290static void gre_destroy(struct nf_conn *ct)
291{
292 struct nf_conn *master = ct->master;
Patrick McHardy0d537782007-07-07 22:39:38 -0700293 pr_debug(" entering\n");
Patrick McHardyf09943f2006-12-02 22:09:41 -0800294
295 if (!master)
Patrick McHardy0d537782007-07-07 22:39:38 -0700296 pr_debug("no master !?!\n");
Patrick McHardyf09943f2006-12-02 22:09:41 -0800297 else
298 nf_ct_gre_keymap_destroy(master);
299}
300
Pablo Neira Ayuso50978462012-02-28 19:13:48 +0100301#if IS_ENABLED(CONFIG_NF_CT_NETLINK_TIMEOUT)
302
303#include <linux/netfilter/nfnetlink.h>
304#include <linux/netfilter/nfnetlink_cttimeout.h>
305
Gao feng8264deb2012-05-28 21:04:23 +0000306static int gre_timeout_nlattr_to_obj(struct nlattr *tb[],
307 struct net *net, void *data)
Pablo Neira Ayuso50978462012-02-28 19:13:48 +0100308{
309 unsigned int *timeouts = data;
Gao feng8264deb2012-05-28 21:04:23 +0000310 struct netns_proto_gre *net_gre = gre_pernet(net);
Pablo Neira Ayuso50978462012-02-28 19:13:48 +0100311
312 /* set default timeouts for GRE. */
Gao feng8264deb2012-05-28 21:04:23 +0000313 timeouts[GRE_CT_UNREPLIED] = net_gre->gre_timeouts[GRE_CT_UNREPLIED];
314 timeouts[GRE_CT_REPLIED] = net_gre->gre_timeouts[GRE_CT_REPLIED];
Pablo Neira Ayuso50978462012-02-28 19:13:48 +0100315
316 if (tb[CTA_TIMEOUT_GRE_UNREPLIED]) {
317 timeouts[GRE_CT_UNREPLIED] =
318 ntohl(nla_get_be32(tb[CTA_TIMEOUT_GRE_UNREPLIED])) * HZ;
319 }
320 if (tb[CTA_TIMEOUT_GRE_REPLIED]) {
321 timeouts[GRE_CT_REPLIED] =
322 ntohl(nla_get_be32(tb[CTA_TIMEOUT_GRE_REPLIED])) * HZ;
323 }
324 return 0;
325}
326
327static int
328gre_timeout_obj_to_nlattr(struct sk_buff *skb, const void *data)
329{
330 const unsigned int *timeouts = data;
331
David S. Miller242ddfc2012-04-01 18:52:03 -0400332 if (nla_put_be32(skb, CTA_TIMEOUT_GRE_UNREPLIED,
333 htonl(timeouts[GRE_CT_UNREPLIED] / HZ)) ||
334 nla_put_be32(skb, CTA_TIMEOUT_GRE_REPLIED,
335 htonl(timeouts[GRE_CT_REPLIED] / HZ)))
336 goto nla_put_failure;
Pablo Neira Ayuso50978462012-02-28 19:13:48 +0100337 return 0;
338
339nla_put_failure:
340 return -ENOSPC;
341}
342
343static const struct nla_policy
344gre_timeout_nla_policy[CTA_TIMEOUT_GRE_MAX+1] = {
345 [CTA_TIMEOUT_GRE_UNREPLIED] = { .type = NLA_U32 },
346 [CTA_TIMEOUT_GRE_REPLIED] = { .type = NLA_U32 },
347};
348#endif /* CONFIG_NF_CT_NETLINK_TIMEOUT */
349
Gao fengf1caad22012-06-21 04:36:39 +0000350static int gre_init_net(struct net *net, u_int16_t proto)
Gao feng4f71d802012-05-28 21:04:21 +0000351{
352 struct netns_proto_gre *net_gre = gre_pernet(net);
353 int i;
354
355 rwlock_init(&net_gre->keymap_lock);
356 INIT_LIST_HEAD(&net_gre->keymap_list);
357 for (i = 0; i < GRE_CT_MAX; i++)
358 net_gre->gre_timeouts[i] = gre_timeouts[i];
359
360 return 0;
361}
362
Patrick McHardyf09943f2006-12-02 22:09:41 -0800363/* protocol helper struct */
Patrick McHardy61075af2007-07-14 20:48:19 -0700364static struct nf_conntrack_l4proto nf_conntrack_l4proto_gre4 __read_mostly = {
Patrick McHardyf09943f2006-12-02 22:09:41 -0800365 .l3proto = AF_INET,
366 .l4proto = IPPROTO_GRE,
367 .name = "gre",
368 .pkt_to_tuple = gre_pkt_to_tuple,
369 .invert_tuple = gre_invert_tuple,
370 .print_tuple = gre_print_tuple,
371 .print_conntrack = gre_print_conntrack,
Pablo Neira Ayuso2c8503f2012-02-28 18:23:31 +0100372 .get_timeouts = gre_get_timeouts,
Patrick McHardyf09943f2006-12-02 22:09:41 -0800373 .packet = gre_packet,
374 .new = gre_new,
375 .destroy = gre_destroy,
376 .me = THIS_MODULE,
Igor Maravićc0cd1152011-12-12 02:58:24 +0000377#if IS_ENABLED(CONFIG_NF_CT_NETLINK)
Patrick McHardyfdf70832007-09-28 14:37:41 -0700378 .tuple_to_nlattr = nf_ct_port_tuple_to_nlattr,
Holger Eitzenbergera400c302009-03-25 21:53:39 +0100379 .nlattr_tuple_size = nf_ct_port_nlattr_tuple_size,
Patrick McHardyfdf70832007-09-28 14:37:41 -0700380 .nlattr_to_tuple = nf_ct_port_nlattr_to_tuple,
Patrick McHardyf73e9242007-09-28 14:39:55 -0700381 .nla_policy = nf_ct_port_nla_policy,
Patrick McHardyf09943f2006-12-02 22:09:41 -0800382#endif
Pablo Neira Ayuso50978462012-02-28 19:13:48 +0100383#if IS_ENABLED(CONFIG_NF_CT_NETLINK_TIMEOUT)
384 .ctnl_timeout = {
385 .nlattr_to_obj = gre_timeout_nlattr_to_obj,
386 .obj_to_nlattr = gre_timeout_obj_to_nlattr,
387 .nlattr_max = CTA_TIMEOUT_GRE_MAX,
388 .obj_size = sizeof(unsigned int) * GRE_CT_MAX,
389 .nla_policy = gre_timeout_nla_policy,
390 },
391#endif /* CONFIG_NF_CT_NETLINK_TIMEOUT */
Gao feng4f71d802012-05-28 21:04:21 +0000392 .net_id = &proto_gre_net_id,
393 .init_net = gre_init_net,
Patrick McHardyf09943f2006-12-02 22:09:41 -0800394};
395
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +0200396static int proto_gre_net_init(struct net *net)
397{
Gao feng4f71d802012-05-28 21:04:21 +0000398 int ret = 0;
Gao fengc296bb42013-01-23 12:51:10 +0100399 ret = nf_ct_l4proto_pernet_register(net, &nf_conntrack_l4proto_gre4);
Gao feng4f71d802012-05-28 21:04:21 +0000400 if (ret < 0)
Gao fengc296bb42013-01-23 12:51:10 +0100401 pr_err("nf_conntrack_gre4: pernet registration failed.\n");
Gao feng4f71d802012-05-28 21:04:21 +0000402 return ret;
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +0200403}
404
405static void proto_gre_net_exit(struct net *net)
406{
Gao fengc296bb42013-01-23 12:51:10 +0100407 nf_ct_l4proto_pernet_unregister(net, &nf_conntrack_l4proto_gre4);
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +0200408 nf_ct_gre_keymap_flush(net);
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +0200409}
410
411static struct pernet_operations proto_gre_net_ops = {
412 .init = proto_gre_net_init,
413 .exit = proto_gre_net_exit,
Eric W. Biedermane8d02882009-11-29 15:46:08 +0000414 .id = &proto_gre_net_id,
415 .size = sizeof(struct netns_proto_gre),
Alexey Dobriyan3bb0d1c2008-10-08 11:35:10 +0200416};
417
Patrick McHardyf09943f2006-12-02 22:09:41 -0800418static int __init nf_ct_proto_gre_init(void)
419{
Gao fengc296bb42013-01-23 12:51:10 +0100420 int ret;
421
Gao fengc296bb42013-01-23 12:51:10 +0100422 ret = register_pernet_subsys(&proto_gre_net_ops);
423 if (ret < 0)
424 goto out_pernet;
425
Gao feng0d98da52013-03-07 17:20:46 +0000426 ret = nf_ct_l4proto_register(&nf_conntrack_l4proto_gre4);
427 if (ret < 0)
428 goto out_gre4;
429
Gao fengc296bb42013-01-23 12:51:10 +0100430 return 0;
Gao fengc296bb42013-01-23 12:51:10 +0100431out_gre4:
Gao feng0d98da52013-03-07 17:20:46 +0000432 unregister_pernet_subsys(&proto_gre_net_ops);
433out_pernet:
Gao fengc296bb42013-01-23 12:51:10 +0100434 return ret;
Patrick McHardyf09943f2006-12-02 22:09:41 -0800435}
436
Alexey Dobriyan56bc0f92008-11-20 10:01:37 +0100437static void __exit nf_ct_proto_gre_fini(void)
Patrick McHardyf09943f2006-12-02 22:09:41 -0800438{
Gao fengc296bb42013-01-23 12:51:10 +0100439 nf_ct_l4proto_unregister(&nf_conntrack_l4proto_gre4);
Eric W. Biedermane8d02882009-11-29 15:46:08 +0000440 unregister_pernet_subsys(&proto_gre_net_ops);
Patrick McHardyf09943f2006-12-02 22:09:41 -0800441}
442
443module_init(nf_ct_proto_gre_init);
444module_exit(nf_ct_proto_gre_fini);
445
446MODULE_LICENSE("GPL");