9a84b6cb99e6770030c300330599c7f4ea773839
[platform/kernel/linux-rpi.git] / net / netfilter / core.c
1 /* netfilter.c: look after the filters for various protocols.
2  * 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.
8  * Patrick McHardy (c) 2006-2012
9  */
10 #include <linux/kernel.h>
11 #include <linux/netfilter.h>
12 #include <net/protocol.h>
13 #include <linux/init.h>
14 #include <linux/skbuff.h>
15 #include <linux/wait.h>
16 #include <linux/module.h>
17 #include <linux/interrupt.h>
18 #include <linux/if.h>
19 #include <linux/netdevice.h>
20 #include <linux/netfilter_ipv6.h>
21 #include <linux/inetdevice.h>
22 #include <linux/proc_fs.h>
23 #include <linux/mutex.h>
24 #include <linux/mm.h>
25 #include <linux/rcupdate.h>
26 #include <net/net_namespace.h>
27 #include <net/sock.h>
28
29 #include "nf_internals.h"
30
31 static DEFINE_MUTEX(afinfo_mutex);
32
33 const struct nf_afinfo __rcu *nf_afinfo[NFPROTO_NUMPROTO] __read_mostly;
34 EXPORT_SYMBOL(nf_afinfo);
35 const struct nf_ipv6_ops __rcu *nf_ipv6_ops __read_mostly;
36 EXPORT_SYMBOL_GPL(nf_ipv6_ops);
37
38 DEFINE_PER_CPU(bool, nf_skb_duplicated);
39 EXPORT_SYMBOL_GPL(nf_skb_duplicated);
40
41 int nf_register_afinfo(const struct nf_afinfo *afinfo)
42 {
43         mutex_lock(&afinfo_mutex);
44         RCU_INIT_POINTER(nf_afinfo[afinfo->family], afinfo);
45         mutex_unlock(&afinfo_mutex);
46         return 0;
47 }
48 EXPORT_SYMBOL_GPL(nf_register_afinfo);
49
50 void nf_unregister_afinfo(const struct nf_afinfo *afinfo)
51 {
52         mutex_lock(&afinfo_mutex);
53         RCU_INIT_POINTER(nf_afinfo[afinfo->family], NULL);
54         mutex_unlock(&afinfo_mutex);
55         synchronize_rcu();
56 }
57 EXPORT_SYMBOL_GPL(nf_unregister_afinfo);
58
59 #ifdef HAVE_JUMP_LABEL
60 struct static_key nf_hooks_needed[NFPROTO_NUMPROTO][NF_MAX_HOOKS];
61 EXPORT_SYMBOL(nf_hooks_needed);
62 #endif
63
64 static DEFINE_MUTEX(nf_hook_mutex);
65
66 /* max hooks per family/hooknum */
67 #define MAX_HOOK_COUNT          1024
68
69 #define nf_entry_dereference(e) \
70         rcu_dereference_protected(e, lockdep_is_held(&nf_hook_mutex))
71
72 static struct nf_hook_entries *allocate_hook_entries_size(u16 num)
73 {
74         struct nf_hook_entries *e;
75         size_t alloc = sizeof(*e) +
76                        sizeof(struct nf_hook_entry) * num +
77                        sizeof(struct nf_hook_ops *) * num;
78
79         if (num == 0)
80                 return NULL;
81
82         e = kvzalloc(alloc, GFP_KERNEL);
83         if (e)
84                 e->num_hook_entries = num;
85         return e;
86 }
87
88 static unsigned int accept_all(void *priv,
89                                struct sk_buff *skb,
90                                const struct nf_hook_state *state)
91 {
92         return NF_ACCEPT; /* ACCEPT makes nf_hook_slow call next hook */
93 }
94
95 static const struct nf_hook_ops dummy_ops = {
96         .hook = accept_all,
97         .priority = INT_MIN,
98 };
99
100 static struct nf_hook_entries *
101 nf_hook_entries_grow(const struct nf_hook_entries *old,
102                      const struct nf_hook_ops *reg)
103 {
104         unsigned int i, alloc_entries, nhooks, old_entries;
105         struct nf_hook_ops **orig_ops = NULL;
106         struct nf_hook_ops **new_ops;
107         struct nf_hook_entries *new;
108         bool inserted = false;
109
110         alloc_entries = 1;
111         old_entries = old ? old->num_hook_entries : 0;
112
113         if (old) {
114                 orig_ops = nf_hook_entries_get_hook_ops(old);
115
116                 for (i = 0; i < old_entries; i++) {
117                         if (orig_ops[i] != &dummy_ops)
118                                 alloc_entries++;
119                 }
120         }
121
122         if (alloc_entries > MAX_HOOK_COUNT)
123                 return ERR_PTR(-E2BIG);
124
125         new = allocate_hook_entries_size(alloc_entries);
126         if (!new)
127                 return ERR_PTR(-ENOMEM);
128
129         new_ops = nf_hook_entries_get_hook_ops(new);
130
131         i = 0;
132         nhooks = 0;
133         while (i < old_entries) {
134                 if (orig_ops[i] == &dummy_ops) {
135                         ++i;
136                         continue;
137                 }
138                 if (inserted || reg->priority > orig_ops[i]->priority) {
139                         new_ops[nhooks] = (void *)orig_ops[i];
140                         new->hooks[nhooks] = old->hooks[i];
141                         i++;
142                 } else {
143                         new_ops[nhooks] = (void *)reg;
144                         new->hooks[nhooks].hook = reg->hook;
145                         new->hooks[nhooks].priv = reg->priv;
146                         inserted = true;
147                 }
148                 nhooks++;
149         }
150
151         if (!inserted) {
152                 new_ops[nhooks] = (void *)reg;
153                 new->hooks[nhooks].hook = reg->hook;
154                 new->hooks[nhooks].priv = reg->priv;
155         }
156
157         return new;
158 }
159
160 static void hooks_validate(const struct nf_hook_entries *hooks)
161 {
162 #ifdef CONFIG_DEBUG_KERNEL
163         struct nf_hook_ops **orig_ops;
164         int prio = INT_MIN;
165         size_t i = 0;
166
167         orig_ops = nf_hook_entries_get_hook_ops(hooks);
168
169         for (i = 0; i < hooks->num_hook_entries; i++) {
170                 if (orig_ops[i] == &dummy_ops)
171                         continue;
172
173                 WARN_ON(orig_ops[i]->priority < prio);
174
175                 if (orig_ops[i]->priority > prio)
176                         prio = orig_ops[i]->priority;
177         }
178 #endif
179 }
180
181 /*
182  * __nf_hook_entries_try_shrink - try to shrink hook array
183  *
184  * @pp -- location of hook blob
185  *
186  * Hook unregistration must always succeed, so to-be-removed hooks
187  * are replaced by a dummy one that will just move to next hook.
188  *
189  * This counts the current dummy hooks, attempts to allocate new blob,
190  * copies the live hooks, then replaces and discards old one.
191  *
192  * return values:
193  *
194  * Returns address to free, or NULL.
195  */
196 static void *__nf_hook_entries_try_shrink(struct nf_hook_entries __rcu **pp)
197 {
198         struct nf_hook_entries *old, *new = NULL;
199         unsigned int i, j, skip = 0, hook_entries;
200         struct nf_hook_ops **orig_ops;
201         struct nf_hook_ops **new_ops;
202
203         old = nf_entry_dereference(*pp);
204         if (WARN_ON_ONCE(!old))
205                 return NULL;
206
207         orig_ops = nf_hook_entries_get_hook_ops(old);
208         for (i = 0; i < old->num_hook_entries; i++) {
209                 if (orig_ops[i] == &dummy_ops)
210                         skip++;
211         }
212
213         /* if skip == hook_entries all hooks have been removed */
214         hook_entries = old->num_hook_entries;
215         if (skip == hook_entries)
216                 goto out_assign;
217
218         if (skip == 0)
219                 return NULL;
220
221         hook_entries -= skip;
222         new = allocate_hook_entries_size(hook_entries);
223         if (!new)
224                 return NULL;
225
226         new_ops = nf_hook_entries_get_hook_ops(new);
227         for (i = 0, j = 0; i < old->num_hook_entries; i++) {
228                 if (orig_ops[i] == &dummy_ops)
229                         continue;
230                 new->hooks[j] = old->hooks[i];
231                 new_ops[j] = (void *)orig_ops[i];
232                 j++;
233         }
234         hooks_validate(new);
235 out_assign:
236         rcu_assign_pointer(*pp, new);
237         return old;
238 }
239
240 static struct nf_hook_entries __rcu **nf_hook_entry_head(struct net *net, const struct nf_hook_ops *reg)
241 {
242         if (reg->pf != NFPROTO_NETDEV)
243                 return net->nf.hooks[reg->pf]+reg->hooknum;
244
245 #ifdef CONFIG_NETFILTER_INGRESS
246         if (reg->hooknum == NF_NETDEV_INGRESS) {
247                 if (reg->dev && dev_net(reg->dev) == net)
248                         return &reg->dev->nf_hooks_ingress;
249         }
250 #endif
251         WARN_ON_ONCE(1);
252         return NULL;
253 }
254
255 int nf_register_net_hook(struct net *net, const struct nf_hook_ops *reg)
256 {
257         struct nf_hook_entries *p, *new_hooks;
258         struct nf_hook_entries __rcu **pp;
259
260         if (reg->pf == NFPROTO_NETDEV) {
261 #ifndef CONFIG_NETFILTER_INGRESS
262                 if (reg->hooknum == NF_NETDEV_INGRESS)
263                         return -EOPNOTSUPP;
264 #endif
265                 if (reg->hooknum != NF_NETDEV_INGRESS ||
266                     !reg->dev || dev_net(reg->dev) != net)
267                         return -EINVAL;
268         }
269
270         pp = nf_hook_entry_head(net, reg);
271         if (!pp)
272                 return -EINVAL;
273
274         mutex_lock(&nf_hook_mutex);
275
276         p = nf_entry_dereference(*pp);
277         new_hooks = nf_hook_entries_grow(p, reg);
278
279         if (!IS_ERR(new_hooks))
280                 rcu_assign_pointer(*pp, new_hooks);
281
282         mutex_unlock(&nf_hook_mutex);
283         if (IS_ERR(new_hooks))
284                 return PTR_ERR(new_hooks);
285
286         hooks_validate(new_hooks);
287 #ifdef CONFIG_NETFILTER_INGRESS
288         if (reg->pf == NFPROTO_NETDEV && reg->hooknum == NF_NETDEV_INGRESS)
289                 net_inc_ingress_queue();
290 #endif
291 #ifdef HAVE_JUMP_LABEL
292         static_key_slow_inc(&nf_hooks_needed[reg->pf][reg->hooknum]);
293 #endif
294         synchronize_net();
295         BUG_ON(p == new_hooks);
296         kvfree(p);
297         return 0;
298 }
299 EXPORT_SYMBOL(nf_register_net_hook);
300
301 /*
302  * __nf_unregister_net_hook - remove a hook from blob
303  *
304  * @oldp: current address of hook blob
305  * @unreg: hook to unregister
306  *
307  * This cannot fail, hook unregistration must always succeed.
308  * Therefore replace the to-be-removed hook with a dummy hook.
309  */
310 static void __nf_unregister_net_hook(struct nf_hook_entries *old,
311                                      const struct nf_hook_ops *unreg)
312 {
313         struct nf_hook_ops **orig_ops;
314         bool found = false;
315         unsigned int i;
316
317         orig_ops = nf_hook_entries_get_hook_ops(old);
318         for (i = 0; i < old->num_hook_entries; i++) {
319                 if (orig_ops[i] != unreg)
320                         continue;
321                 WRITE_ONCE(old->hooks[i].hook, accept_all);
322                 WRITE_ONCE(orig_ops[i], &dummy_ops);
323                 found = true;
324                 break;
325         }
326
327         if (found) {
328 #ifdef CONFIG_NETFILTER_INGRESS
329                 if (unreg->pf == NFPROTO_NETDEV && unreg->hooknum == NF_NETDEV_INGRESS)
330                         net_dec_ingress_queue();
331 #endif
332 #ifdef HAVE_JUMP_LABEL
333                 static_key_slow_dec(&nf_hooks_needed[unreg->pf][unreg->hooknum]);
334 #endif
335         } else {
336                 WARN_ONCE(1, "hook not found, pf %d num %d", unreg->pf, unreg->hooknum);
337         }
338 }
339
340 void nf_unregister_net_hook(struct net *net, const struct nf_hook_ops *reg)
341 {
342         struct nf_hook_entries __rcu **pp;
343         struct nf_hook_entries *p;
344
345         pp = nf_hook_entry_head(net, reg);
346         if (!pp)
347                 return;
348
349         mutex_lock(&nf_hook_mutex);
350
351         p = nf_entry_dereference(*pp);
352         if (WARN_ON_ONCE(!p)) {
353                 mutex_unlock(&nf_hook_mutex);
354                 return;
355         }
356
357         __nf_unregister_net_hook(p, reg);
358
359         p = __nf_hook_entries_try_shrink(pp);
360         mutex_unlock(&nf_hook_mutex);
361         if (!p)
362                 return;
363
364         synchronize_net();
365
366         nf_queue_nf_hook_drop(net);
367         kvfree(p);
368 }
369 EXPORT_SYMBOL(nf_unregister_net_hook);
370
371 int nf_register_net_hooks(struct net *net, const struct nf_hook_ops *reg,
372                           unsigned int n)
373 {
374         unsigned int i;
375         int err = 0;
376
377         for (i = 0; i < n; i++) {
378                 err = nf_register_net_hook(net, &reg[i]);
379                 if (err)
380                         goto err;
381         }
382         return err;
383
384 err:
385         if (i > 0)
386                 nf_unregister_net_hooks(net, reg, i);
387         return err;
388 }
389 EXPORT_SYMBOL(nf_register_net_hooks);
390
391 void nf_unregister_net_hooks(struct net *net, const struct nf_hook_ops *reg,
392                              unsigned int hookcount)
393 {
394         unsigned int i;
395
396         for (i = 0; i < hookcount; i++)
397                 nf_unregister_net_hook(net, &reg[i]);
398 }
399 EXPORT_SYMBOL(nf_unregister_net_hooks);
400
401 /* Returns 1 if okfn() needs to be executed by the caller,
402  * -EPERM for NF_DROP, 0 otherwise.  Caller must hold rcu_read_lock. */
403 int nf_hook_slow(struct sk_buff *skb, struct nf_hook_state *state,
404                  const struct nf_hook_entries *e, unsigned int s)
405 {
406         unsigned int verdict;
407         int ret;
408
409         for (; s < e->num_hook_entries; s++) {
410                 verdict = nf_hook_entry_hookfn(&e->hooks[s], skb, state);
411                 switch (verdict & NF_VERDICT_MASK) {
412                 case NF_ACCEPT:
413                         break;
414                 case NF_DROP:
415                         kfree_skb(skb);
416                         ret = NF_DROP_GETERR(verdict);
417                         if (ret == 0)
418                                 ret = -EPERM;
419                         return ret;
420                 case NF_QUEUE:
421                         ret = nf_queue(skb, state, e, s, verdict);
422                         if (ret == 1)
423                                 continue;
424                         return ret;
425                 default:
426                         /* Implicit handling for NF_STOLEN, as well as any other
427                          * non conventional verdicts.
428                          */
429                         return 0;
430                 }
431         }
432
433         return 1;
434 }
435 EXPORT_SYMBOL(nf_hook_slow);
436
437
438 int skb_make_writable(struct sk_buff *skb, unsigned int writable_len)
439 {
440         if (writable_len > skb->len)
441                 return 0;
442
443         /* Not exclusive use of packet?  Must copy. */
444         if (!skb_cloned(skb)) {
445                 if (writable_len <= skb_headlen(skb))
446                         return 1;
447         } else if (skb_clone_writable(skb, writable_len))
448                 return 1;
449
450         if (writable_len <= skb_headlen(skb))
451                 writable_len = 0;
452         else
453                 writable_len -= skb_headlen(skb);
454
455         return !!__pskb_pull_tail(skb, writable_len);
456 }
457 EXPORT_SYMBOL(skb_make_writable);
458
459 /* This needs to be compiled in any case to avoid dependencies between the
460  * nfnetlink_queue code and nf_conntrack.
461  */
462 struct nfnl_ct_hook __rcu *nfnl_ct_hook __read_mostly;
463 EXPORT_SYMBOL_GPL(nfnl_ct_hook);
464
465 #if IS_ENABLED(CONFIG_NF_CONNTRACK)
466 /* This does not belong here, but locally generated errors need it if connection
467    tracking in use: without this, connection may not be in hash table, and hence
468    manufactured ICMP or RST packets will not be associated with it. */
469 void (*ip_ct_attach)(struct sk_buff *, const struct sk_buff *)
470                 __rcu __read_mostly;
471 EXPORT_SYMBOL(ip_ct_attach);
472
473 void nf_ct_attach(struct sk_buff *new, const struct sk_buff *skb)
474 {
475         void (*attach)(struct sk_buff *, const struct sk_buff *);
476
477         if (skb->_nfct) {
478                 rcu_read_lock();
479                 attach = rcu_dereference(ip_ct_attach);
480                 if (attach)
481                         attach(new, skb);
482                 rcu_read_unlock();
483         }
484 }
485 EXPORT_SYMBOL(nf_ct_attach);
486
487 void (*nf_ct_destroy)(struct nf_conntrack *) __rcu __read_mostly;
488 EXPORT_SYMBOL(nf_ct_destroy);
489
490 void nf_conntrack_destroy(struct nf_conntrack *nfct)
491 {
492         void (*destroy)(struct nf_conntrack *);
493
494         rcu_read_lock();
495         destroy = rcu_dereference(nf_ct_destroy);
496         BUG_ON(destroy == NULL);
497         destroy(nfct);
498         rcu_read_unlock();
499 }
500 EXPORT_SYMBOL(nf_conntrack_destroy);
501
502 /* Built-in default zone used e.g. by modules. */
503 const struct nf_conntrack_zone nf_ct_zone_dflt = {
504         .id     = NF_CT_DEFAULT_ZONE_ID,
505         .dir    = NF_CT_DEFAULT_ZONE_DIR,
506 };
507 EXPORT_SYMBOL_GPL(nf_ct_zone_dflt);
508 #endif /* CONFIG_NF_CONNTRACK */
509
510 #ifdef CONFIG_NF_NAT_NEEDED
511 void (*nf_nat_decode_session_hook)(struct sk_buff *, struct flowi *);
512 EXPORT_SYMBOL(nf_nat_decode_session_hook);
513 #endif
514
515 static int __net_init netfilter_net_init(struct net *net)
516 {
517         int i, h;
518
519         for (i = 0; i < ARRAY_SIZE(net->nf.hooks); i++) {
520                 for (h = 0; h < NF_MAX_HOOKS; h++)
521                         RCU_INIT_POINTER(net->nf.hooks[i][h], NULL);
522         }
523
524 #ifdef CONFIG_PROC_FS
525         net->nf.proc_netfilter = proc_net_mkdir(net, "netfilter",
526                                                 net->proc_net);
527         if (!net->nf.proc_netfilter) {
528                 if (!net_eq(net, &init_net))
529                         pr_err("cannot create netfilter proc entry");
530
531                 return -ENOMEM;
532         }
533 #endif
534
535         return 0;
536 }
537
538 static void __net_exit netfilter_net_exit(struct net *net)
539 {
540         remove_proc_entry("netfilter", net->proc_net);
541 }
542
543 static struct pernet_operations netfilter_net_ops = {
544         .init = netfilter_net_init,
545         .exit = netfilter_net_exit,
546 };
547
548 int __init netfilter_init(void)
549 {
550         int ret;
551
552         ret = register_pernet_subsys(&netfilter_net_ops);
553         if (ret < 0)
554                 goto err;
555
556         ret = netfilter_log_init();
557         if (ret < 0)
558                 goto err_pernet;
559
560         return 0;
561 err_pernet:
562         unregister_pernet_subsys(&netfilter_net_ops);
563 err:
564         return ret;
565 }