blob: 381a77cf0c9eb83c5900fb775f6e38a5fcd4b7ad [file] [log] [blame]
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001/* netfilter.c: look after the filters for various protocols.
Harald Weltef6ebe772005-08-09 20:21:49 -07002 * Heavily influenced by the old firewall.c by David Bonn and Alan Cox.
3 *
4 * Thanks to Rob `CmdrTaco' Malda for not influencing this code in any
5 * way.
6 *
7 * Rusty Russell (C)2000 -- This code is GPL.
Harald Weltef6ebe772005-08-09 20:21:49 -07008 */
Harald Weltef6ebe772005-08-09 20:21:49 -07009#include <linux/kernel.h>
10#include <linux/netfilter.h>
11#include <net/protocol.h>
12#include <linux/init.h>
13#include <linux/skbuff.h>
14#include <linux/wait.h>
15#include <linux/module.h>
16#include <linux/interrupt.h>
17#include <linux/if.h>
18#include <linux/netdevice.h>
19#include <linux/inetdevice.h>
20#include <linux/proc_fs.h>
Patrick McHardyd486dd12007-02-12 11:09:55 -080021#include <linux/mutex.h>
Harald Weltef6ebe772005-08-09 20:21:49 -070022#include <net/sock.h>
23
24#include "nf_internals.h"
25
Patrick McHardyd486dd12007-02-12 11:09:55 -080026static DEFINE_MUTEX(afinfo_mutex);
Patrick McHardybce80322006-04-06 14:18:09 -070027
Martin Josefssone2b76062006-11-29 02:35:04 +010028struct nf_afinfo *nf_afinfo[NPROTO] __read_mostly;
Patrick McHardybce80322006-04-06 14:18:09 -070029EXPORT_SYMBOL(nf_afinfo);
30
31int nf_register_afinfo(struct nf_afinfo *afinfo)
32{
Patrick McHardyd486dd12007-02-12 11:09:55 -080033 int err;
34
35 err = mutex_lock_interruptible(&afinfo_mutex);
36 if (err < 0)
37 return err;
Patrick McHardybce80322006-04-06 14:18:09 -070038 rcu_assign_pointer(nf_afinfo[afinfo->family], afinfo);
Patrick McHardyd486dd12007-02-12 11:09:55 -080039 mutex_unlock(&afinfo_mutex);
Patrick McHardybce80322006-04-06 14:18:09 -070040 return 0;
41}
42EXPORT_SYMBOL_GPL(nf_register_afinfo);
43
44void nf_unregister_afinfo(struct nf_afinfo *afinfo)
45{
Patrick McHardyd486dd12007-02-12 11:09:55 -080046 mutex_lock(&afinfo_mutex);
Patrick McHardybce80322006-04-06 14:18:09 -070047 rcu_assign_pointer(nf_afinfo[afinfo->family], NULL);
Patrick McHardyd486dd12007-02-12 11:09:55 -080048 mutex_unlock(&afinfo_mutex);
Patrick McHardybce80322006-04-06 14:18:09 -070049 synchronize_rcu();
50}
51EXPORT_SYMBOL_GPL(nf_unregister_afinfo);
52
Harald Weltef6ebe772005-08-09 20:21:49 -070053/* In this code, we can be waiting indefinitely for userspace to
54 * service a packet if a hook returns NF_QUEUE. We could keep a count
55 * of skbuffs queued for userspace, and not deregister a hook unless
56 * this is zero, but that sucks. Now, we simply check when the
57 * packets come back: if the hook is gone, the packet is discarded. */
Martin Josefssone2b76062006-11-29 02:35:04 +010058struct list_head nf_hooks[NPROTO][NF_MAX_HOOKS] __read_mostly;
Harald Weltef6ebe772005-08-09 20:21:49 -070059EXPORT_SYMBOL(nf_hooks);
Patrick McHardyfd706d62007-02-12 11:10:14 -080060static DEFINE_MUTEX(nf_hook_mutex);
Harald Weltef6ebe772005-08-09 20:21:49 -070061
62int nf_register_hook(struct nf_hook_ops *reg)
63{
64 struct list_head *i;
Patrick McHardyfd706d62007-02-12 11:10:14 -080065 int err;
Harald Weltef6ebe772005-08-09 20:21:49 -070066
Patrick McHardyfd706d62007-02-12 11:10:14 -080067 err = mutex_lock_interruptible(&nf_hook_mutex);
68 if (err < 0)
69 return err;
Harald Weltef6ebe772005-08-09 20:21:49 -070070 list_for_each(i, &nf_hooks[reg->pf][reg->hooknum]) {
71 if (reg->priority < ((struct nf_hook_ops *)i)->priority)
72 break;
73 }
74 list_add_rcu(&reg->list, i->prev);
Patrick McHardyfd706d62007-02-12 11:10:14 -080075 mutex_unlock(&nf_hook_mutex);
Harald Weltef6ebe772005-08-09 20:21:49 -070076 return 0;
77}
78EXPORT_SYMBOL(nf_register_hook);
79
80void nf_unregister_hook(struct nf_hook_ops *reg)
81{
Patrick McHardyfd706d62007-02-12 11:10:14 -080082 mutex_lock(&nf_hook_mutex);
Harald Weltef6ebe772005-08-09 20:21:49 -070083 list_del_rcu(&reg->list);
Patrick McHardyfd706d62007-02-12 11:10:14 -080084 mutex_unlock(&nf_hook_mutex);
Harald Weltef6ebe772005-08-09 20:21:49 -070085
86 synchronize_net();
87}
88EXPORT_SYMBOL(nf_unregister_hook);
89
Patrick McHardy972d1cb2006-04-06 14:09:12 -070090int nf_register_hooks(struct nf_hook_ops *reg, unsigned int n)
91{
92 unsigned int i;
93 int err = 0;
94
95 for (i = 0; i < n; i++) {
96 err = nf_register_hook(&reg[i]);
97 if (err)
98 goto err;
99 }
100 return err;
101
102err:
103 if (i > 0)
104 nf_unregister_hooks(reg, i);
105 return err;
106}
107EXPORT_SYMBOL(nf_register_hooks);
108
109void nf_unregister_hooks(struct nf_hook_ops *reg, unsigned int n)
110{
111 unsigned int i;
112
113 for (i = 0; i < n; i++)
114 nf_unregister_hook(&reg[i]);
115}
116EXPORT_SYMBOL(nf_unregister_hooks);
117
Harald Weltef6ebe772005-08-09 20:21:49 -0700118unsigned int nf_iterate(struct list_head *head,
119 struct sk_buff **skb,
120 int hook,
121 const struct net_device *indev,
122 const struct net_device *outdev,
123 struct list_head **i,
124 int (*okfn)(struct sk_buff *),
125 int hook_thresh)
126{
127 unsigned int verdict;
128
129 /*
130 * The caller must not block between calls to this
131 * function because of risk of continuing from deleted element.
132 */
133 list_for_each_continue_rcu(*i, head) {
134 struct nf_hook_ops *elem = (struct nf_hook_ops *)*i;
135
136 if (hook_thresh > elem->priority)
137 continue;
138
139 /* Optimization: we don't need to hold module
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800140 reference here, since function can't sleep. --RR */
Harald Weltef6ebe772005-08-09 20:21:49 -0700141 verdict = elem->hook(hook, skb, indev, outdev, okfn);
142 if (verdict != NF_ACCEPT) {
143#ifdef CONFIG_NETFILTER_DEBUG
144 if (unlikely((verdict & NF_VERDICT_MASK)
145 > NF_MAX_VERDICT)) {
146 NFDEBUG("Evil return from %p(%u).\n",
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800147 elem->hook, hook);
Harald Weltef6ebe772005-08-09 20:21:49 -0700148 continue;
149 }
150#endif
151 if (verdict != NF_REPEAT)
152 return verdict;
153 *i = (*i)->prev;
154 }
155 }
156 return NF_ACCEPT;
157}
158
159
160/* Returns 1 if okfn() needs to be executed by the caller,
161 * -EPERM for NF_DROP, 0 otherwise. */
162int nf_hook_slow(int pf, unsigned int hook, struct sk_buff **pskb,
163 struct net_device *indev,
164 struct net_device *outdev,
165 int (*okfn)(struct sk_buff *),
166 int hook_thresh)
167{
168 struct list_head *elem;
169 unsigned int verdict;
170 int ret = 0;
171
172 /* We may already have this, but read-locks nest anyway */
173 rcu_read_lock();
174
175 elem = &nf_hooks[pf][hook];
176next_hook:
177 verdict = nf_iterate(&nf_hooks[pf][hook], pskb, hook, indev,
178 outdev, &elem, okfn, hook_thresh);
179 if (verdict == NF_ACCEPT || verdict == NF_STOP) {
180 ret = 1;
181 goto unlock;
182 } else if (verdict == NF_DROP) {
183 kfree_skb(*pskb);
184 ret = -EPERM;
185 } else if ((verdict & NF_VERDICT_MASK) == NF_QUEUE) {
186 NFDEBUG("nf_hook: Verdict = QUEUE.\n");
Patrick McHardy394f5452006-08-05 00:58:52 -0700187 if (!nf_queue(*pskb, elem, pf, hook, indev, outdev, okfn,
Harald Weltef6ebe772005-08-09 20:21:49 -0700188 verdict >> NF_VERDICT_BITS))
189 goto next_hook;
190 }
191unlock:
192 rcu_read_unlock();
193 return ret;
194}
195EXPORT_SYMBOL(nf_hook_slow);
196
197
198int skb_make_writable(struct sk_buff **pskb, unsigned int writable_len)
199{
200 struct sk_buff *nskb;
201
202 if (writable_len > (*pskb)->len)
203 return 0;
204
205 /* Not exclusive use of packet? Must copy. */
Patrick McHardy334a8132007-06-25 04:35:20 -0700206 if (skb_cloned(*pskb) && !skb_clone_writable(*pskb, writable_len))
207 goto copy_skb;
208 if (skb_shared(*pskb))
Harald Weltef6ebe772005-08-09 20:21:49 -0700209 goto copy_skb;
210
211 return pskb_may_pull(*pskb, writable_len);
212
213copy_skb:
214 nskb = skb_copy(*pskb, GFP_ATOMIC);
215 if (!nskb)
216 return 0;
217 BUG_ON(skb_is_nonlinear(nskb));
218
219 /* Rest of kernel will get very unhappy if we pass it a
220 suddenly-orphaned skbuff */
221 if ((*pskb)->sk)
222 skb_set_owner_w(nskb, (*pskb)->sk);
223 kfree_skb(*pskb);
224 *pskb = nskb;
225 return 1;
226}
227EXPORT_SYMBOL(skb_make_writable);
228
Al Viro43bc0ca2006-11-14 21:43:23 -0800229void nf_proto_csum_replace4(__sum16 *sum, struct sk_buff *skb,
230 __be32 from, __be32 to, int pseudohdr)
Patrick McHardy4cf411d2006-08-05 00:58:33 -0700231{
Al Viro43bc0ca2006-11-14 21:43:23 -0800232 __be32 diff[] = { ~from, to };
Patrick McHardy4cf411d2006-08-05 00:58:33 -0700233 if (skb->ip_summed != CHECKSUM_PARTIAL) {
Jan Engelhardta47362a2007-07-07 22:16:55 -0700234 *sum = csum_fold(csum_partial(diff, sizeof(diff),
Al Viro43bc0ca2006-11-14 21:43:23 -0800235 ~csum_unfold(*sum)));
Patrick McHardy4cf411d2006-08-05 00:58:33 -0700236 if (skb->ip_summed == CHECKSUM_COMPLETE && pseudohdr)
Jan Engelhardta47362a2007-07-07 22:16:55 -0700237 skb->csum = ~csum_partial(diff, sizeof(diff),
Al Viro43bc0ca2006-11-14 21:43:23 -0800238 ~skb->csum);
Patrick McHardy4cf411d2006-08-05 00:58:33 -0700239 } else if (pseudohdr)
Jan Engelhardta47362a2007-07-07 22:16:55 -0700240 *sum = ~csum_fold(csum_partial(diff, sizeof(diff),
Al Viro43bc0ca2006-11-14 21:43:23 -0800241 csum_unfold(*sum)));
Patrick McHardy4cf411d2006-08-05 00:58:33 -0700242}
Al Viro43bc0ca2006-11-14 21:43:23 -0800243EXPORT_SYMBOL(nf_proto_csum_replace4);
Harald Weltef6ebe772005-08-09 20:21:49 -0700244
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700245#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
Harald Weltef6ebe772005-08-09 20:21:49 -0700246/* This does not belong here, but locally generated errors need it if connection
247 tracking in use: without this, connection may not be in hash table, and hence
248 manufactured ICMP or RST packets will not be associated with it. */
249void (*ip_ct_attach)(struct sk_buff *, struct sk_buff *);
250EXPORT_SYMBOL(ip_ct_attach);
251
252void nf_ct_attach(struct sk_buff *new, struct sk_buff *skb)
253{
254 void (*attach)(struct sk_buff *, struct sk_buff *);
255
Patrick McHardyc3a47ab2007-02-12 11:09:19 -0800256 if (skb->nfct) {
257 rcu_read_lock();
258 attach = rcu_dereference(ip_ct_attach);
259 if (attach)
260 attach(new, skb);
261 rcu_read_unlock();
Harald Weltef6ebe772005-08-09 20:21:49 -0700262 }
263}
264EXPORT_SYMBOL(nf_ct_attach);
Yasuyuki Kozakaide6e05c2007-03-23 11:17:27 -0700265
266void (*nf_ct_destroy)(struct nf_conntrack *);
267EXPORT_SYMBOL(nf_ct_destroy);
268
269void nf_conntrack_destroy(struct nf_conntrack *nfct)
270{
271 void (*destroy)(struct nf_conntrack *);
272
273 rcu_read_lock();
274 destroy = rcu_dereference(nf_ct_destroy);
275 BUG_ON(destroy == NULL);
276 destroy(nfct);
277 rcu_read_unlock();
278}
279EXPORT_SYMBOL(nf_conntrack_destroy);
280#endif /* CONFIG_NF_CONNTRACK */
Harald Weltef6ebe772005-08-09 20:21:49 -0700281
282#ifdef CONFIG_PROC_FS
283struct proc_dir_entry *proc_net_netfilter;
284EXPORT_SYMBOL(proc_net_netfilter);
285#endif
286
287void __init netfilter_init(void)
288{
289 int i, h;
290 for (i = 0; i < NPROTO; i++) {
291 for (h = 0; h < NF_MAX_HOOKS; h++)
292 INIT_LIST_HEAD(&nf_hooks[i][h]);
293 }
294
295#ifdef CONFIG_PROC_FS
296 proc_net_netfilter = proc_mkdir("netfilter", proc_net);
297 if (!proc_net_netfilter)
298 panic("cannot create netfilter proc entry");
299#endif
300
301 if (netfilter_queue_init() < 0)
302 panic("cannot initialize nf_queue");
303 if (netfilter_log_init() < 0)
304 panic("cannot initialize nf_log");
305}