Linux 4.19.133
[linux/fpc-iii.git] / net / bridge / br_nf_core.c
blobd88e724d5755e3a679f160217f8a78f006e4bd8c
1 /*
2 * Handle firewalling core
3 * Linux ethernet bridge
5 * Authors:
6 * Lennert Buytenhek <buytenh@gnu.org>
7 * Bart De Schuymer <bdschuym@pandora.be>
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
14 * Lennert dedicates this file to Kerstin Wurdinger.
17 #include <linux/module.h>
18 #include <linux/kernel.h>
19 #include <linux/in_route.h>
20 #include <linux/inetdevice.h>
21 #include <net/route.h>
23 #include "br_private.h"
24 #ifdef CONFIG_SYSCTL
25 #include <linux/sysctl.h>
26 #endif
28 static void fake_update_pmtu(struct dst_entry *dst, struct sock *sk,
29 struct sk_buff *skb, u32 mtu,
30 bool confirm_neigh)
34 static void fake_redirect(struct dst_entry *dst, struct sock *sk,
35 struct sk_buff *skb)
39 static u32 *fake_cow_metrics(struct dst_entry *dst, unsigned long old)
41 return NULL;
44 static struct neighbour *fake_neigh_lookup(const struct dst_entry *dst,
45 struct sk_buff *skb,
46 const void *daddr)
48 return NULL;
51 static unsigned int fake_mtu(const struct dst_entry *dst)
53 return dst->dev->mtu;
56 static struct dst_ops fake_dst_ops = {
57 .family = AF_INET,
58 .update_pmtu = fake_update_pmtu,
59 .redirect = fake_redirect,
60 .cow_metrics = fake_cow_metrics,
61 .neigh_lookup = fake_neigh_lookup,
62 .mtu = fake_mtu,
66 * Initialize bogus route table used to keep netfilter happy.
67 * Currently, we fill in the PMTU entry because netfilter
68 * refragmentation needs it, and the rt_flags entry because
69 * ipt_REJECT needs it. Future netfilter modules might
70 * require us to fill additional fields.
72 static const u32 br_dst_default_metrics[RTAX_MAX] = {
73 [RTAX_MTU - 1] = 1500,
76 void br_netfilter_rtable_init(struct net_bridge *br)
78 struct rtable *rt = &br->fake_rtable;
80 atomic_set(&rt->dst.__refcnt, 1);
81 rt->dst.dev = br->dev;
82 dst_init_metrics(&rt->dst, br_dst_default_metrics, true);
83 rt->dst.flags = DST_NOXFRM | DST_FAKE_RTABLE;
84 rt->dst.ops = &fake_dst_ops;
87 int __init br_nf_core_init(void)
89 return dst_entries_init(&fake_dst_ops);
92 void br_nf_core_fini(void)
94 dst_entries_destroy(&fake_dst_ops);