blob: 38b6715e1db41e4aff52c1a2a046bb886fc35c11 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* iptables module to match on related connections */
2/*
3 * (C) 2001 Martin Josefsson <gandalf@wlug.westbo.se>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 * 19 Mar 2002 Harald Welte <laforge@gnumonks.org>:
10 * - Port to newnat infrastructure
11 */
12
13#include <linux/module.h>
14#include <linux/skbuff.h>
15#include <linux/netfilter.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080016#if defined(CONFIG_IP_NF_CONNTRACK) || defined(CONFIG_IP_NF_CONNTRACK_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/netfilter_ipv4/ip_conntrack.h>
18#include <linux/netfilter_ipv4/ip_conntrack_core.h>
19#include <linux/netfilter_ipv4/ip_conntrack_helper.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080020#else
21#include <net/netfilter/nf_conntrack.h>
22#include <net/netfilter/nf_conntrack_core.h>
23#include <net/netfilter/nf_conntrack_helper.h>
24#endif
Harald Welte2e4e6a12006-01-12 13:30:04 -080025#include <linux/netfilter/x_tables.h>
26#include <linux/netfilter/xt_helper.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28MODULE_LICENSE("GPL");
29MODULE_AUTHOR("Martin Josefsson <gandalf@netfilter.org>");
30MODULE_DESCRIPTION("iptables helper match module");
Harald Welte2e4e6a12006-01-12 13:30:04 -080031MODULE_ALIAS("ipt_helper");
32MODULE_ALIAS("ip6t_helper");
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#if 0
35#define DEBUGP printk
36#else
37#define DEBUGP(format, args...)
38#endif
39
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080040#if defined(CONFIG_IP_NF_CONNTRACK) || defined(CONFIG_IP_NF_CONNTRACK_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041static int
42match(const struct sk_buff *skb,
43 const struct net_device *in,
44 const struct net_device *out,
45 const void *matchinfo,
46 int offset,
Harald Welte2e4e6a12006-01-12 13:30:04 -080047 unsigned int protoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 int *hotdrop)
49{
Harald Welte2e4e6a12006-01-12 13:30:04 -080050 const struct xt_helper_info *info = matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 struct ip_conntrack *ct;
52 enum ip_conntrack_info ctinfo;
53 int ret = info->invert;
54
55 ct = ip_conntrack_get((struct sk_buff *)skb, &ctinfo);
56 if (!ct) {
Harald Welte2e4e6a12006-01-12 13:30:04 -080057 DEBUGP("xt_helper: Eek! invalid conntrack?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 return ret;
59 }
60
61 if (!ct->master) {
Harald Welte2e4e6a12006-01-12 13:30:04 -080062 DEBUGP("xt_helper: conntrack %p has no master\n", ct);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 return ret;
64 }
65
Patrick McHardye45b1be2005-06-21 14:01:30 -070066 read_lock_bh(&ip_conntrack_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 if (!ct->master->helper) {
Harald Welte2e4e6a12006-01-12 13:30:04 -080068 DEBUGP("xt_helper: master ct %p has no helper\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 exp->expectant);
70 goto out_unlock;
71 }
72
73 DEBUGP("master's name = %s , info->name = %s\n",
74 ct->master->helper->name, info->name);
75
76 if (info->name[0] == '\0')
77 ret ^= 1;
78 else
79 ret ^= !strncmp(ct->master->helper->name, info->name,
80 strlen(ct->master->helper->name));
81out_unlock:
Patrick McHardye45b1be2005-06-21 14:01:30 -070082 read_unlock_bh(&ip_conntrack_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 return ret;
84}
85
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080086#else /* CONFIG_IP_NF_CONNTRACK */
87
88static int
89match(const struct sk_buff *skb,
90 const struct net_device *in,
91 const struct net_device *out,
92 const void *matchinfo,
93 int offset,
Harald Welte2e4e6a12006-01-12 13:30:04 -080094 unsigned int protoff,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080095 int *hotdrop)
96{
Harald Welte2e4e6a12006-01-12 13:30:04 -080097 const struct xt_helper_info *info = matchinfo;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080098 struct nf_conn *ct;
99 enum ip_conntrack_info ctinfo;
100 int ret = info->invert;
101
102 ct = nf_ct_get((struct sk_buff *)skb, &ctinfo);
103 if (!ct) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800104 DEBUGP("xt_helper: Eek! invalid conntrack?\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800105 return ret;
106 }
107
108 if (!ct->master) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800109 DEBUGP("xt_helper: conntrack %p has no master\n", ct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800110 return ret;
111 }
112
113 read_lock_bh(&nf_conntrack_lock);
114 if (!ct->master->helper) {
Harald Welte2e4e6a12006-01-12 13:30:04 -0800115 DEBUGP("xt_helper: master ct %p has no helper\n",
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800116 exp->expectant);
117 goto out_unlock;
118 }
119
120 DEBUGP("master's name = %s , info->name = %s\n",
121 ct->master->helper->name, info->name);
122
123 if (info->name[0] == '\0')
124 ret ^= 1;
125 else
126 ret ^= !strncmp(ct->master->helper->name, info->name,
127 strlen(ct->master->helper->name));
128out_unlock:
129 read_unlock_bh(&nf_conntrack_lock);
130 return ret;
131}
132#endif
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134static int check(const char *tablename,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800135 const void *inf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 void *matchinfo,
137 unsigned int matchsize,
138 unsigned int hook_mask)
139{
Harald Welte2e4e6a12006-01-12 13:30:04 -0800140 struct xt_helper_info *info = matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 info->name[29] = '\0';
143
144 /* verify size */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800145 if (matchsize != XT_ALIGN(sizeof(struct xt_helper_info)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 return 0;
147
148 return 1;
149}
150
Harald Welte2e4e6a12006-01-12 13:30:04 -0800151static struct xt_match helper_match = {
152 .name = "helper",
153 .match = &match,
154 .checkentry = &check,
155 .me = THIS_MODULE,
156};
157static struct xt_match helper6_match = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 .name = "helper",
159 .match = &match,
160 .checkentry = &check,
161 .me = THIS_MODULE,
162};
163
164static int __init init(void)
165{
Harald Welte2e4e6a12006-01-12 13:30:04 -0800166 int ret;
167 need_conntrack();
168
169 ret = xt_register_match(AF_INET, &helper_match);
170 if (ret < 0)
171 return ret;
172
173 ret = xt_register_match(AF_INET6, &helper6_match);
174 if (ret < 0)
175 xt_unregister_match(AF_INET, &helper_match);
176
177 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
180static void __exit fini(void)
181{
Harald Welte2e4e6a12006-01-12 13:30:04 -0800182 xt_unregister_match(AF_INET, &helper_match);
183 xt_unregister_match(AF_INET6, &helper6_match);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
186module_init(init);
187module_exit(fini);
188