blob: e6d3a69b9e9b29614eb3d7c1a1042a558ce582bc [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>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020022#include <net/net_namespace.h>
Harald Weltef6ebe772005-08-09 20:21:49 -070023#include <net/sock.h>
24
25#include "nf_internals.h"
26
Patrick McHardyd486dd12007-02-12 11:09:55 -080027static DEFINE_MUTEX(afinfo_mutex);
Patrick McHardybce80322006-04-06 14:18:09 -070028
Martin Josefssone2b76062006-11-29 02:35:04 +010029struct nf_afinfo *nf_afinfo[NPROTO] __read_mostly;
Patrick McHardybce80322006-04-06 14:18:09 -070030EXPORT_SYMBOL(nf_afinfo);
31
32int nf_register_afinfo(struct nf_afinfo *afinfo)
33{
Patrick McHardyd486dd12007-02-12 11:09:55 -080034 int err;
35
36 err = mutex_lock_interruptible(&afinfo_mutex);
37 if (err < 0)
38 return err;
Patrick McHardybce80322006-04-06 14:18:09 -070039 rcu_assign_pointer(nf_afinfo[afinfo->family], afinfo);
Patrick McHardyd486dd12007-02-12 11:09:55 -080040 mutex_unlock(&afinfo_mutex);
Patrick McHardybce80322006-04-06 14:18:09 -070041 return 0;
42}
43EXPORT_SYMBOL_GPL(nf_register_afinfo);
44
45void nf_unregister_afinfo(struct nf_afinfo *afinfo)
46{
Patrick McHardyd486dd12007-02-12 11:09:55 -080047 mutex_lock(&afinfo_mutex);
Patrick McHardybce80322006-04-06 14:18:09 -070048 rcu_assign_pointer(nf_afinfo[afinfo->family], NULL);
Patrick McHardyd486dd12007-02-12 11:09:55 -080049 mutex_unlock(&afinfo_mutex);
Patrick McHardybce80322006-04-06 14:18:09 -070050 synchronize_rcu();
51}
52EXPORT_SYMBOL_GPL(nf_unregister_afinfo);
53
Harald Weltef6ebe772005-08-09 20:21:49 -070054/* In this code, we can be waiting indefinitely for userspace to
55 * service a packet if a hook returns NF_QUEUE. We could keep a count
56 * of skbuffs queued for userspace, and not deregister a hook unless
57 * this is zero, but that sucks. Now, we simply check when the
58 * packets come back: if the hook is gone, the packet is discarded. */
Martin Josefssone2b76062006-11-29 02:35:04 +010059struct list_head nf_hooks[NPROTO][NF_MAX_HOOKS] __read_mostly;
Harald Weltef6ebe772005-08-09 20:21:49 -070060EXPORT_SYMBOL(nf_hooks);
Patrick McHardyfd706d62007-02-12 11:10:14 -080061static DEFINE_MUTEX(nf_hook_mutex);
Harald Weltef6ebe772005-08-09 20:21:49 -070062
63int nf_register_hook(struct nf_hook_ops *reg)
64{
Li Zefan4c610972007-12-04 23:22:26 -080065 struct nf_hook_ops *elem;
Patrick McHardyfd706d62007-02-12 11:10:14 -080066 int err;
Harald Weltef6ebe772005-08-09 20:21:49 -070067
Patrick McHardyfd706d62007-02-12 11:10:14 -080068 err = mutex_lock_interruptible(&nf_hook_mutex);
69 if (err < 0)
70 return err;
Li Zefan4c610972007-12-04 23:22:26 -080071 list_for_each_entry(elem, &nf_hooks[reg->pf][reg->hooknum], list) {
72 if (reg->priority < elem->priority)
Harald Weltef6ebe772005-08-09 20:21:49 -070073 break;
74 }
Li Zefan4c610972007-12-04 23:22:26 -080075 list_add_rcu(&reg->list, elem->list.prev);
Patrick McHardyfd706d62007-02-12 11:10:14 -080076 mutex_unlock(&nf_hook_mutex);
Harald Weltef6ebe772005-08-09 20:21:49 -070077 return 0;
78}
79EXPORT_SYMBOL(nf_register_hook);
80
81void nf_unregister_hook(struct nf_hook_ops *reg)
82{
Patrick McHardyfd706d62007-02-12 11:10:14 -080083 mutex_lock(&nf_hook_mutex);
Harald Weltef6ebe772005-08-09 20:21:49 -070084 list_del_rcu(&reg->list);
Patrick McHardyfd706d62007-02-12 11:10:14 -080085 mutex_unlock(&nf_hook_mutex);
Harald Weltef6ebe772005-08-09 20:21:49 -070086
87 synchronize_net();
88}
89EXPORT_SYMBOL(nf_unregister_hook);
90
Patrick McHardy972d1cb2006-04-06 14:09:12 -070091int nf_register_hooks(struct nf_hook_ops *reg, unsigned int n)
92{
93 unsigned int i;
94 int err = 0;
95
96 for (i = 0; i < n; i++) {
97 err = nf_register_hook(&reg[i]);
98 if (err)
99 goto err;
100 }
101 return err;
102
103err:
104 if (i > 0)
105 nf_unregister_hooks(reg, i);
106 return err;
107}
108EXPORT_SYMBOL(nf_register_hooks);
109
110void nf_unregister_hooks(struct nf_hook_ops *reg, unsigned int n)
111{
112 unsigned int i;
113
114 for (i = 0; i < n; i++)
115 nf_unregister_hook(&reg[i]);
116}
117EXPORT_SYMBOL(nf_unregister_hooks);
118
Harald Weltef6ebe772005-08-09 20:21:49 -0700119unsigned int nf_iterate(struct list_head *head,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700120 struct sk_buff *skb,
Harald Weltef6ebe772005-08-09 20:21:49 -0700121 int hook,
122 const struct net_device *indev,
123 const struct net_device *outdev,
124 struct list_head **i,
125 int (*okfn)(struct sk_buff *),
126 int hook_thresh)
127{
128 unsigned int verdict;
129
130 /*
131 * The caller must not block between calls to this
132 * function because of risk of continuing from deleted element.
133 */
134 list_for_each_continue_rcu(*i, head) {
135 struct nf_hook_ops *elem = (struct nf_hook_ops *)*i;
136
137 if (hook_thresh > elem->priority)
138 continue;
139
140 /* Optimization: we don't need to hold module
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800141 reference here, since function can't sleep. --RR */
Harald Weltef6ebe772005-08-09 20:21:49 -0700142 verdict = elem->hook(hook, skb, indev, outdev, okfn);
143 if (verdict != NF_ACCEPT) {
144#ifdef CONFIG_NETFILTER_DEBUG
145 if (unlikely((verdict & NF_VERDICT_MASK)
146 > NF_MAX_VERDICT)) {
147 NFDEBUG("Evil return from %p(%u).\n",
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800148 elem->hook, hook);
Harald Weltef6ebe772005-08-09 20:21:49 -0700149 continue;
150 }
151#endif
152 if (verdict != NF_REPEAT)
153 return verdict;
154 *i = (*i)->prev;
155 }
156 }
157 return NF_ACCEPT;
158}
159
160
161/* Returns 1 if okfn() needs to be executed by the caller,
162 * -EPERM for NF_DROP, 0 otherwise. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700163int nf_hook_slow(int pf, unsigned int hook, struct sk_buff *skb,
Harald Weltef6ebe772005-08-09 20:21:49 -0700164 struct net_device *indev,
165 struct net_device *outdev,
166 int (*okfn)(struct sk_buff *),
167 int hook_thresh)
168{
169 struct list_head *elem;
170 unsigned int verdict;
171 int ret = 0;
172
173 /* We may already have this, but read-locks nest anyway */
174 rcu_read_lock();
175
176 elem = &nf_hooks[pf][hook];
177next_hook:
Herbert Xu3db05fe2007-10-15 00:53:15 -0700178 verdict = nf_iterate(&nf_hooks[pf][hook], skb, hook, indev,
Harald Weltef6ebe772005-08-09 20:21:49 -0700179 outdev, &elem, okfn, hook_thresh);
180 if (verdict == NF_ACCEPT || verdict == NF_STOP) {
181 ret = 1;
182 goto unlock;
183 } else if (verdict == NF_DROP) {
Herbert Xu3db05fe2007-10-15 00:53:15 -0700184 kfree_skb(skb);
Harald Weltef6ebe772005-08-09 20:21:49 -0700185 ret = -EPERM;
186 } else if ((verdict & NF_VERDICT_MASK) == NF_QUEUE) {
187 NFDEBUG("nf_hook: Verdict = QUEUE.\n");
Herbert Xu3db05fe2007-10-15 00:53:15 -0700188 if (!nf_queue(skb, elem, pf, hook, indev, outdev, okfn,
Harald Weltef6ebe772005-08-09 20:21:49 -0700189 verdict >> NF_VERDICT_BITS))
190 goto next_hook;
191 }
192unlock:
193 rcu_read_unlock();
194 return ret;
195}
196EXPORT_SYMBOL(nf_hook_slow);
197
198
Herbert Xu37d41872007-10-14 00:39:18 -0700199int skb_make_writable(struct sk_buff *skb, unsigned int writable_len)
Harald Weltef6ebe772005-08-09 20:21:49 -0700200{
Herbert Xu37d41872007-10-14 00:39:18 -0700201 if (writable_len > skb->len)
Harald Weltef6ebe772005-08-09 20:21:49 -0700202 return 0;
203
204 /* Not exclusive use of packet? Must copy. */
Herbert Xu37d41872007-10-14 00:39:18 -0700205 if (!skb_cloned(skb)) {
206 if (writable_len <= skb_headlen(skb))
207 return 1;
208 } else if (skb_clone_writable(skb, writable_len))
209 return 1;
Harald Weltef6ebe772005-08-09 20:21:49 -0700210
Herbert Xu37d41872007-10-14 00:39:18 -0700211 if (writable_len <= skb_headlen(skb))
212 writable_len = 0;
213 else
214 writable_len -= skb_headlen(skb);
Harald Weltef6ebe772005-08-09 20:21:49 -0700215
Herbert Xu37d41872007-10-14 00:39:18 -0700216 return !!__pskb_pull_tail(skb, writable_len);
Harald Weltef6ebe772005-08-09 20:21:49 -0700217}
218EXPORT_SYMBOL(skb_make_writable);
219
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700220#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
Harald Weltef6ebe772005-08-09 20:21:49 -0700221/* This does not belong here, but locally generated errors need it if connection
222 tracking in use: without this, connection may not be in hash table, and hence
223 manufactured ICMP or RST packets will not be associated with it. */
224void (*ip_ct_attach)(struct sk_buff *, struct sk_buff *);
225EXPORT_SYMBOL(ip_ct_attach);
226
227void nf_ct_attach(struct sk_buff *new, struct sk_buff *skb)
228{
229 void (*attach)(struct sk_buff *, struct sk_buff *);
230
Patrick McHardyc3a47ab2007-02-12 11:09:19 -0800231 if (skb->nfct) {
232 rcu_read_lock();
233 attach = rcu_dereference(ip_ct_attach);
234 if (attach)
235 attach(new, skb);
236 rcu_read_unlock();
Harald Weltef6ebe772005-08-09 20:21:49 -0700237 }
238}
239EXPORT_SYMBOL(nf_ct_attach);
Yasuyuki Kozakaide6e05c2007-03-23 11:17:27 -0700240
241void (*nf_ct_destroy)(struct nf_conntrack *);
242EXPORT_SYMBOL(nf_ct_destroy);
243
244void nf_conntrack_destroy(struct nf_conntrack *nfct)
245{
246 void (*destroy)(struct nf_conntrack *);
247
248 rcu_read_lock();
249 destroy = rcu_dereference(nf_ct_destroy);
250 BUG_ON(destroy == NULL);
251 destroy(nfct);
252 rcu_read_unlock();
253}
254EXPORT_SYMBOL(nf_conntrack_destroy);
255#endif /* CONFIG_NF_CONNTRACK */
Harald Weltef6ebe772005-08-09 20:21:49 -0700256
257#ifdef CONFIG_PROC_FS
258struct proc_dir_entry *proc_net_netfilter;
259EXPORT_SYMBOL(proc_net_netfilter);
260#endif
261
262void __init netfilter_init(void)
263{
264 int i, h;
265 for (i = 0; i < NPROTO; i++) {
266 for (h = 0; h < NF_MAX_HOOKS; h++)
267 INIT_LIST_HEAD(&nf_hooks[i][h]);
268 }
269
270#ifdef CONFIG_PROC_FS
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200271 proc_net_netfilter = proc_mkdir("netfilter", init_net.proc_net);
Harald Weltef6ebe772005-08-09 20:21:49 -0700272 if (!proc_net_netfilter)
273 panic("cannot create netfilter proc entry");
274#endif
275
276 if (netfilter_queue_init() < 0)
277 panic("cannot initialize nf_queue");
278 if (netfilter_log_init() < 0)
279 panic("cannot initialize nf_log");
280}