Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Handle firewalling |
| 3 | * Linux ethernet bridge |
| 4 | * |
| 5 | * Authors: |
Bart De Schuymer | 8237908 | 2010-04-13 11:40:41 +0200 | [diff] [blame] | 6 | * Lennert Buytenhek <buytenh@gnu.org> |
| 7 | * Bart De Schuymer <bdschuym@pandora.be> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * |
| 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. |
| 13 | * |
| 14 | * Lennert dedicates this file to Kerstin Wurdinger. |
| 15 | */ |
| 16 | |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/kernel.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 19 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/ip.h> |
| 21 | #include <linux/netdevice.h> |
| 22 | #include <linux/skbuff.h> |
Arnaldo Carvalho de Melo | 14c8502 | 2005-12-27 02:43:12 -0200 | [diff] [blame] | 23 | #include <linux/if_arp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/if_ether.h> |
| 25 | #include <linux/if_vlan.h> |
Michael Milner | 516299d | 2007-04-12 22:14:23 -0700 | [diff] [blame] | 26 | #include <linux/if_pppox.h> |
| 27 | #include <linux/ppp_defs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/netfilter_bridge.h> |
| 29 | #include <linux/netfilter_ipv4.h> |
| 30 | #include <linux/netfilter_ipv6.h> |
| 31 | #include <linux/netfilter_arp.h> |
| 32 | #include <linux/in_route.h> |
Bart De Schuymer | f216f08 | 2006-12-05 13:45:21 -0800 | [diff] [blame] | 33 | #include <linux/inetdevice.h> |
Arnaldo Carvalho de Melo | 14c8502 | 2005-12-27 02:43:12 -0200 | [diff] [blame] | 34 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <net/ip.h> |
| 36 | #include <net/ipv6.h> |
Arnaldo Carvalho de Melo | 14c8502 | 2005-12-27 02:43:12 -0200 | [diff] [blame] | 37 | #include <net/route.h> |
| 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <asm/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include "br_private.h" |
| 41 | #ifdef CONFIG_SYSCTL |
| 42 | #include <linux/sysctl.h> |
| 43 | #endif |
| 44 | |
| 45 | #define skb_origaddr(skb) (((struct bridge_skb_cb *) \ |
| 46 | (skb->nf_bridge->data))->daddr.ipv4) |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 47 | #define store_orig_dstaddr(skb) (skb_origaddr(skb) = ip_hdr(skb)->daddr) |
| 48 | #define dnat_took_place(skb) (skb_origaddr(skb) != ip_hdr(skb)->daddr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #ifdef CONFIG_SYSCTL |
| 51 | static struct ctl_table_header *brnf_sysctl_header; |
Brian Haley | 9c1ea14 | 2006-09-18 00:03:41 -0700 | [diff] [blame] | 52 | static int brnf_call_iptables __read_mostly = 1; |
| 53 | static int brnf_call_ip6tables __read_mostly = 1; |
| 54 | static int brnf_call_arptables __read_mostly = 1; |
Herbert Xu | 47e0e1c | 2009-01-12 00:06:03 +0000 | [diff] [blame] | 55 | static int brnf_filter_vlan_tagged __read_mostly = 0; |
| 56 | static int brnf_filter_pppoe_tagged __read_mostly = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #else |
Patrick McHardy | 4df53d8 | 2010-07-02 09:32:57 +0200 | [diff] [blame] | 58 | #define brnf_call_iptables 1 |
| 59 | #define brnf_call_ip6tables 1 |
| 60 | #define brnf_call_arptables 1 |
Herbert Xu | 47e0e1c | 2009-01-12 00:06:03 +0000 | [diff] [blame] | 61 | #define brnf_filter_vlan_tagged 0 |
| 62 | #define brnf_filter_pppoe_tagged 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | #endif |
| 64 | |
Dave Jones | b6f99a2 | 2007-03-22 12:27:49 -0700 | [diff] [blame] | 65 | static inline __be16 vlan_proto(const struct sk_buff *skb) |
Stephen Hemminger | 8b42ec3 | 2006-03-20 22:58:05 -0800 | [diff] [blame] | 66 | { |
Jesse Gross | 1393791 | 2010-10-20 13:56:01 +0000 | [diff] [blame] | 67 | if (vlan_tx_tag_present(skb)) |
| 68 | return skb->protocol; |
| 69 | else if (skb->protocol == htons(ETH_P_8021Q)) |
| 70 | return vlan_eth_hdr(skb)->h_vlan_encapsulated_proto; |
| 71 | else |
| 72 | return 0; |
Stephen Hemminger | 8b42ec3 | 2006-03-20 22:58:05 -0800 | [diff] [blame] | 73 | } |
| 74 | |
| 75 | #define IS_VLAN_IP(skb) \ |
Jesse Gross | 1393791 | 2010-10-20 13:56:01 +0000 | [diff] [blame] | 76 | (vlan_proto(skb) == htons(ETH_P_IP) && \ |
Stephen Hemminger | 8b42ec3 | 2006-03-20 22:58:05 -0800 | [diff] [blame] | 77 | brnf_filter_vlan_tagged) |
| 78 | |
| 79 | #define IS_VLAN_IPV6(skb) \ |
Jesse Gross | 1393791 | 2010-10-20 13:56:01 +0000 | [diff] [blame] | 80 | (vlan_proto(skb) == htons(ETH_P_IPV6) && \ |
Stephen Hemminger | 8b42ec3 | 2006-03-20 22:58:05 -0800 | [diff] [blame] | 81 | brnf_filter_vlan_tagged) |
| 82 | |
| 83 | #define IS_VLAN_ARP(skb) \ |
Jesse Gross | 1393791 | 2010-10-20 13:56:01 +0000 | [diff] [blame] | 84 | (vlan_proto(skb) == htons(ETH_P_ARP) && \ |
Stephen Hemminger | 8b42ec3 | 2006-03-20 22:58:05 -0800 | [diff] [blame] | 85 | brnf_filter_vlan_tagged) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | |
Michael Milner | 516299d | 2007-04-12 22:14:23 -0700 | [diff] [blame] | 87 | static inline __be16 pppoe_proto(const struct sk_buff *skb) |
| 88 | { |
| 89 | return *((__be16 *)(skb_mac_header(skb) + ETH_HLEN + |
| 90 | sizeof(struct pppoe_hdr))); |
| 91 | } |
| 92 | |
| 93 | #define IS_PPPOE_IP(skb) \ |
| 94 | (skb->protocol == htons(ETH_P_PPP_SES) && \ |
| 95 | pppoe_proto(skb) == htons(PPP_IP) && \ |
| 96 | brnf_filter_pppoe_tagged) |
| 97 | |
| 98 | #define IS_PPPOE_IPV6(skb) \ |
| 99 | (skb->protocol == htons(ETH_P_PPP_SES) && \ |
| 100 | pppoe_proto(skb) == htons(PPP_IPV6) && \ |
| 101 | brnf_filter_pppoe_tagged) |
| 102 | |
Herbert Xu | 631339f | 2008-11-24 16:06:50 -0800 | [diff] [blame] | 103 | static void fake_update_pmtu(struct dst_entry *dst, u32 mtu) |
| 104 | { |
| 105 | } |
| 106 | |
| 107 | static struct dst_ops fake_dst_ops = { |
| 108 | .family = AF_INET, |
Harvey Harrison | 09640e6 | 2009-02-01 00:45:17 -0800 | [diff] [blame] | 109 | .protocol = cpu_to_be16(ETH_P_IP), |
Herbert Xu | 631339f | 2008-11-24 16:06:50 -0800 | [diff] [blame] | 110 | .update_pmtu = fake_update_pmtu, |
Herbert Xu | 631339f | 2008-11-24 16:06:50 -0800 | [diff] [blame] | 111 | }; |
| 112 | |
Simon Wunderlich | 4adf0af | 2008-07-30 16:27:55 -0700 | [diff] [blame] | 113 | /* |
| 114 | * Initialize bogus route table used to keep netfilter happy. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | * Currently, we fill in the PMTU entry because netfilter |
| 116 | * refragmentation needs it, and the rt_flags entry because |
| 117 | * ipt_REJECT needs it. Future netfilter modules might |
Simon Wunderlich | 4adf0af | 2008-07-30 16:27:55 -0700 | [diff] [blame] | 118 | * require us to fill additional fields. |
| 119 | */ |
| 120 | void br_netfilter_rtable_init(struct net_bridge *br) |
| 121 | { |
| 122 | struct rtable *rt = &br->fake_rtable; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 124 | atomic_set(&rt->dst.__refcnt, 1); |
| 125 | rt->dst.dev = br->dev; |
| 126 | rt->dst.path = &rt->dst; |
David S. Miller | defb351 | 2010-12-08 21:16:57 -0800 | [diff] [blame] | 127 | dst_metric_set(&rt->dst, RTAX_MTU, 1500); |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 128 | rt->dst.flags = DST_NOXFRM; |
| 129 | rt->dst.ops = &fake_dst_ops; |
Simon Wunderlich | 4adf0af | 2008-07-30 16:27:55 -0700 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | static inline struct rtable *bridge_parent_rtable(const struct net_device *dev) |
| 133 | { |
stephen hemminger | b5ed54e | 2010-11-15 06:38:13 +0000 | [diff] [blame] | 134 | struct net_bridge_port *port; |
| 135 | |
| 136 | port = br_port_get_rcu(dev); |
| 137 | return port ? &port->br->fake_rtable : NULL; |
Simon Wunderlich | 4adf0af | 2008-07-30 16:27:55 -0700 | [diff] [blame] | 138 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | |
Stephen Hemminger | 5dce971 | 2006-02-09 17:09:38 -0800 | [diff] [blame] | 140 | static inline struct net_device *bridge_parent(const struct net_device *dev) |
| 141 | { |
stephen hemminger | b5ed54e | 2010-11-15 06:38:13 +0000 | [diff] [blame] | 142 | struct net_bridge_port *port; |
Stephen Hemminger | 5dce971 | 2006-02-09 17:09:38 -0800 | [diff] [blame] | 143 | |
stephen hemminger | b5ed54e | 2010-11-15 06:38:13 +0000 | [diff] [blame] | 144 | port = br_port_get_rcu(dev); |
| 145 | return port ? port->br->dev : NULL; |
Stephen Hemminger | 5dce971 | 2006-02-09 17:09:38 -0800 | [diff] [blame] | 146 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | |
Stephen Hemminger | fdeabde | 2006-03-20 22:58:21 -0800 | [diff] [blame] | 148 | static inline struct nf_bridge_info *nf_bridge_alloc(struct sk_buff *skb) |
| 149 | { |
| 150 | skb->nf_bridge = kzalloc(sizeof(struct nf_bridge_info), GFP_ATOMIC); |
| 151 | if (likely(skb->nf_bridge)) |
| 152 | atomic_set(&(skb->nf_bridge->use), 1); |
| 153 | |
| 154 | return skb->nf_bridge; |
| 155 | } |
| 156 | |
Patrick McHardy | 2dc2f20 | 2008-01-20 06:25:48 -0800 | [diff] [blame] | 157 | static inline struct nf_bridge_info *nf_bridge_unshare(struct sk_buff *skb) |
| 158 | { |
| 159 | struct nf_bridge_info *nf_bridge = skb->nf_bridge; |
| 160 | |
| 161 | if (atomic_read(&nf_bridge->use) > 1) { |
| 162 | struct nf_bridge_info *tmp = nf_bridge_alloc(skb); |
| 163 | |
| 164 | if (tmp) { |
| 165 | memcpy(tmp, nf_bridge, sizeof(struct nf_bridge_info)); |
| 166 | atomic_set(&tmp->use, 1); |
Patrick McHardy | 2dc2f20 | 2008-01-20 06:25:48 -0800 | [diff] [blame] | 167 | } |
Changli Gao | 4c3a76a | 2010-08-22 19:03:26 +0000 | [diff] [blame] | 168 | nf_bridge_put(nf_bridge); |
Patrick McHardy | 2dc2f20 | 2008-01-20 06:25:48 -0800 | [diff] [blame] | 169 | nf_bridge = tmp; |
| 170 | } |
| 171 | return nf_bridge; |
| 172 | } |
| 173 | |
Patrick McHardy | fc38582 | 2007-05-03 03:36:16 -0700 | [diff] [blame] | 174 | static inline void nf_bridge_push_encap_header(struct sk_buff *skb) |
| 175 | { |
| 176 | unsigned int len = nf_bridge_encap_header_len(skb); |
| 177 | |
| 178 | skb_push(skb, len); |
| 179 | skb->network_header -= len; |
| 180 | } |
| 181 | |
| 182 | static inline void nf_bridge_pull_encap_header(struct sk_buff *skb) |
| 183 | { |
| 184 | unsigned int len = nf_bridge_encap_header_len(skb); |
| 185 | |
| 186 | skb_pull(skb, len); |
| 187 | skb->network_header += len; |
| 188 | } |
| 189 | |
| 190 | static inline void nf_bridge_pull_encap_header_rcsum(struct sk_buff *skb) |
| 191 | { |
| 192 | unsigned int len = nf_bridge_encap_header_len(skb); |
| 193 | |
| 194 | skb_pull_rcsum(skb, len); |
| 195 | skb->network_header += len; |
| 196 | } |
| 197 | |
Stephen Hemminger | fdeabde | 2006-03-20 22:58:21 -0800 | [diff] [blame] | 198 | static inline void nf_bridge_save_header(struct sk_buff *skb) |
| 199 | { |
Patrick McHardy | fc38582 | 2007-05-03 03:36:16 -0700 | [diff] [blame] | 200 | int header_size = ETH_HLEN + nf_bridge_encap_header_len(skb); |
Stephen Hemminger | fdeabde | 2006-03-20 22:58:21 -0800 | [diff] [blame] | 201 | |
Arnaldo Carvalho de Melo | d626f62 | 2007-03-27 18:55:52 -0300 | [diff] [blame] | 202 | skb_copy_from_linear_data_offset(skb, -header_size, |
| 203 | skb->nf_bridge->data, header_size); |
Stephen Hemminger | fdeabde | 2006-03-20 22:58:21 -0800 | [diff] [blame] | 204 | } |
| 205 | |
Bart De Schuymer | e179e63 | 2010-04-15 12:26:39 +0200 | [diff] [blame] | 206 | static inline void nf_bridge_update_protocol(struct sk_buff *skb) |
| 207 | { |
| 208 | if (skb->nf_bridge->mask & BRNF_8021Q) |
| 209 | skb->protocol = htons(ETH_P_8021Q); |
| 210 | else if (skb->nf_bridge->mask & BRNF_PPPoE) |
| 211 | skb->protocol = htons(ETH_P_PPP_SES); |
| 212 | } |
| 213 | |
Bandan Das | 462fb2a | 2010-09-19 09:34:33 +0000 | [diff] [blame] | 214 | /* When handing a packet over to the IP layer |
| 215 | * check whether we have a skb that is in the |
| 216 | * expected format |
| 217 | */ |
| 218 | |
stephen hemminger | d028023 | 2010-10-18 14:03:21 +0000 | [diff] [blame] | 219 | static int br_parse_ip_options(struct sk_buff *skb) |
Bandan Das | 462fb2a | 2010-09-19 09:34:33 +0000 | [diff] [blame] | 220 | { |
| 221 | struct ip_options *opt; |
| 222 | struct iphdr *iph; |
| 223 | struct net_device *dev = skb->dev; |
| 224 | u32 len; |
| 225 | |
| 226 | iph = ip_hdr(skb); |
| 227 | opt = &(IPCB(skb)->opt); |
| 228 | |
| 229 | /* Basic sanity checks */ |
| 230 | if (iph->ihl < 5 || iph->version != 4) |
| 231 | goto inhdr_error; |
| 232 | |
| 233 | if (!pskb_may_pull(skb, iph->ihl*4)) |
| 234 | goto inhdr_error; |
| 235 | |
| 236 | iph = ip_hdr(skb); |
| 237 | if (unlikely(ip_fast_csum((u8 *)iph, iph->ihl))) |
| 238 | goto inhdr_error; |
| 239 | |
| 240 | len = ntohs(iph->tot_len); |
| 241 | if (skb->len < len) { |
| 242 | IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INTRUNCATEDPKTS); |
| 243 | goto drop; |
| 244 | } else if (len < (iph->ihl*4)) |
| 245 | goto inhdr_error; |
| 246 | |
| 247 | if (pskb_trim_rcsum(skb, len)) { |
| 248 | IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INDISCARDS); |
| 249 | goto drop; |
| 250 | } |
| 251 | |
Eric Dumazet | f8e9881 | 2011-04-12 13:39:14 -0700 | [diff] [blame] | 252 | memset(IPCB(skb), 0, sizeof(struct inet_skb_parm)); |
| 253 | if (iph->ihl == 5) |
Bandan Das | 462fb2a | 2010-09-19 09:34:33 +0000 | [diff] [blame] | 254 | return 0; |
Bandan Das | 462fb2a | 2010-09-19 09:34:33 +0000 | [diff] [blame] | 255 | |
| 256 | opt->optlen = iph->ihl*4 - sizeof(struct iphdr); |
| 257 | if (ip_options_compile(dev_net(dev), opt, skb)) |
| 258 | goto inhdr_error; |
| 259 | |
| 260 | /* Check correct handling of SRR option */ |
| 261 | if (unlikely(opt->srr)) { |
| 262 | struct in_device *in_dev = __in_dev_get_rcu(dev); |
| 263 | if (in_dev && !IN_DEV_SOURCE_ROUTE(in_dev)) |
| 264 | goto drop; |
| 265 | |
| 266 | if (ip_options_rcv_srr(skb)) |
| 267 | goto drop; |
| 268 | } |
| 269 | |
| 270 | return 0; |
| 271 | |
| 272 | inhdr_error: |
| 273 | IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INHDRERRORS); |
| 274 | drop: |
| 275 | return -1; |
| 276 | } |
| 277 | |
Bart De Schuymer | e179e63 | 2010-04-15 12:26:39 +0200 | [diff] [blame] | 278 | /* Fill in the header for fragmented IP packets handled by |
| 279 | * the IPv4 connection tracking code. |
Stephen Hemminger | 07317621 | 2006-08-29 17:48:17 -0700 | [diff] [blame] | 280 | */ |
| 281 | int nf_bridge_copy_header(struct sk_buff *skb) |
| 282 | { |
| 283 | int err; |
Bart De Schuymer | e179e63 | 2010-04-15 12:26:39 +0200 | [diff] [blame] | 284 | unsigned int header_size; |
Stephen Hemminger | 07317621 | 2006-08-29 17:48:17 -0700 | [diff] [blame] | 285 | |
Bart De Schuymer | e179e63 | 2010-04-15 12:26:39 +0200 | [diff] [blame] | 286 | nf_bridge_update_protocol(skb); |
| 287 | header_size = ETH_HLEN + nf_bridge_encap_header_len(skb); |
Herbert Xu | d9cc204 | 2007-09-16 16:21:16 -0700 | [diff] [blame] | 288 | err = skb_cow_head(skb, header_size); |
Stephen Hemminger | 07317621 | 2006-08-29 17:48:17 -0700 | [diff] [blame] | 289 | if (err) |
| 290 | return err; |
| 291 | |
Arnaldo Carvalho de Melo | 27d7ff4 | 2007-03-31 11:55:19 -0300 | [diff] [blame] | 292 | skb_copy_to_linear_data_offset(skb, -header_size, |
| 293 | skb->nf_bridge->data, header_size); |
Patrick McHardy | fc38582 | 2007-05-03 03:36:16 -0700 | [diff] [blame] | 294 | __skb_push(skb, nf_bridge_encap_header_len(skb)); |
Stephen Hemminger | 07317621 | 2006-08-29 17:48:17 -0700 | [diff] [blame] | 295 | return 0; |
| 296 | } |
| 297 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | /* PF_BRIDGE/PRE_ROUTING *********************************************/ |
| 299 | /* Undo the changes made for ip6tables PREROUTING and continue the |
| 300 | * bridge PRE_ROUTING hook. */ |
| 301 | static int br_nf_pre_routing_finish_ipv6(struct sk_buff *skb) |
| 302 | { |
| 303 | struct nf_bridge_info *nf_bridge = skb->nf_bridge; |
Eric Dumazet | 511c3f9 | 2009-06-02 05:14:27 +0000 | [diff] [blame] | 304 | struct rtable *rt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | if (nf_bridge->mask & BRNF_PKT_TYPE) { |
| 307 | skb->pkt_type = PACKET_OTHERHOST; |
| 308 | nf_bridge->mask ^= BRNF_PKT_TYPE; |
| 309 | } |
| 310 | nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING; |
| 311 | |
Eric Dumazet | 511c3f9 | 2009-06-02 05:14:27 +0000 | [diff] [blame] | 312 | rt = bridge_parent_rtable(nf_bridge->physindev); |
| 313 | if (!rt) { |
Simon Wunderlich | 4adf0af | 2008-07-30 16:27:55 -0700 | [diff] [blame] | 314 | kfree_skb(skb); |
| 315 | return 0; |
| 316 | } |
Patrick McHardy | f9181f4 | 2010-06-15 17:31:06 +0200 | [diff] [blame] | 317 | skb_dst_set_noref(skb, &rt->dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | |
| 319 | skb->dev = nf_bridge->physindev; |
Bart De Schuymer | e179e63 | 2010-04-15 12:26:39 +0200 | [diff] [blame] | 320 | nf_bridge_update_protocol(skb); |
Patrick McHardy | fc38582 | 2007-05-03 03:36:16 -0700 | [diff] [blame] | 321 | nf_bridge_push_encap_header(skb); |
Jan Engelhardt | 713aefa | 2010-03-23 04:07:21 +0100 | [diff] [blame] | 322 | NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | br_handle_frame_finish, 1); |
| 324 | |
| 325 | return 0; |
| 326 | } |
| 327 | |
Bart De Schuymer | e179e63 | 2010-04-15 12:26:39 +0200 | [diff] [blame] | 328 | /* Obtain the correct destination MAC address, while preserving the original |
| 329 | * source MAC address. If we already know this address, we just copy it. If we |
| 330 | * don't, we use the neighbour framework to find out. In both cases, we make |
| 331 | * sure that br_handle_frame_finish() is called afterwards. |
| 332 | */ |
| 333 | static int br_nf_pre_routing_finish_bridge(struct sk_buff *skb) |
| 334 | { |
| 335 | struct nf_bridge_info *nf_bridge = skb->nf_bridge; |
| 336 | struct dst_entry *dst; |
| 337 | |
| 338 | skb->dev = bridge_parent(skb->dev); |
| 339 | if (!skb->dev) |
| 340 | goto free_skb; |
| 341 | dst = skb_dst(skb); |
| 342 | if (dst->hh) { |
| 343 | neigh_hh_bridge(dst->hh, skb); |
| 344 | skb->dev = nf_bridge->physindev; |
| 345 | return br_handle_frame_finish(skb); |
| 346 | } else if (dst->neighbour) { |
| 347 | /* the neighbour function below overwrites the complete |
| 348 | * MAC header, so we save the Ethernet source address and |
| 349 | * protocol number. */ |
| 350 | skb_copy_from_linear_data_offset(skb, -(ETH_HLEN-ETH_ALEN), skb->nf_bridge->data, ETH_HLEN-ETH_ALEN); |
| 351 | /* tell br_dev_xmit to continue with forwarding */ |
| 352 | nf_bridge->mask |= BRNF_BRIDGED_DNAT; |
| 353 | return dst->neighbour->output(skb); |
| 354 | } |
| 355 | free_skb: |
| 356 | kfree_skb(skb); |
| 357 | return 0; |
| 358 | } |
| 359 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | /* This requires some explaining. If DNAT has taken place, |
Bart De Schuymer | ea2d9b4 | 2010-04-15 12:14:51 +0200 | [diff] [blame] | 361 | * we will need to fix up the destination Ethernet address. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | * |
| 363 | * There are two cases to consider: |
| 364 | * 1. The packet was DNAT'ed to a device in the same bridge |
| 365 | * port group as it was received on. We can still bridge |
| 366 | * the packet. |
| 367 | * 2. The packet was DNAT'ed to a different device, either |
| 368 | * a non-bridged device or another bridge port group. |
| 369 | * The packet will need to be routed. |
| 370 | * |
| 371 | * The correct way of distinguishing between these two cases is to |
| 372 | * call ip_route_input() and to look at skb->dst->dev, which is |
| 373 | * changed to the destination device if ip_route_input() succeeds. |
| 374 | * |
Bart De Schuymer | ea2d9b4 | 2010-04-15 12:14:51 +0200 | [diff] [blame] | 375 | * Let's first consider the case that ip_route_input() succeeds: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | * |
Bart De Schuymer | ea2d9b4 | 2010-04-15 12:14:51 +0200 | [diff] [blame] | 377 | * If the output device equals the logical bridge device the packet |
| 378 | * came in on, we can consider this bridging. The corresponding MAC |
| 379 | * address will be obtained in br_nf_pre_routing_finish_bridge. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | * Otherwise, the packet is considered to be routed and we just |
| 381 | * change the destination MAC address so that the packet will |
Bart De Schuymer | f216f08 | 2006-12-05 13:45:21 -0800 | [diff] [blame] | 382 | * later be passed up to the IP stack to be routed. For a redirected |
| 383 | * packet, ip_route_input() will give back the localhost as output device, |
| 384 | * which differs from the bridge device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | * |
Bart De Schuymer | ea2d9b4 | 2010-04-15 12:14:51 +0200 | [diff] [blame] | 386 | * Let's now consider the case that ip_route_input() fails: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | * |
Bart De Schuymer | f216f08 | 2006-12-05 13:45:21 -0800 | [diff] [blame] | 388 | * This can be because the destination address is martian, in which case |
| 389 | * the packet will be dropped. |
Bart De Schuymer | ea2d9b4 | 2010-04-15 12:14:51 +0200 | [diff] [blame] | 390 | * If IP forwarding is disabled, ip_route_input() will fail, while |
| 391 | * ip_route_output_key() can return success. The source |
| 392 | * address for ip_route_output_key() is set to zero, so ip_route_output_key() |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | * thinks we're handling a locally generated packet and won't care |
Bart De Schuymer | ea2d9b4 | 2010-04-15 12:14:51 +0200 | [diff] [blame] | 394 | * if IP forwarding is enabled. If the output device equals the logical bridge |
| 395 | * device, we proceed as if ip_route_input() succeeded. If it differs from the |
| 396 | * logical bridge port or if ip_route_output_key() fails we drop the packet. |
| 397 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | static int br_nf_pre_routing_finish(struct sk_buff *skb) |
| 399 | { |
| 400 | struct net_device *dev = skb->dev; |
Arnaldo Carvalho de Melo | eddc9ec | 2007-04-20 22:47:35 -0700 | [diff] [blame] | 401 | struct iphdr *iph = ip_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | struct nf_bridge_info *nf_bridge = skb->nf_bridge; |
Eric Dumazet | 511c3f9 | 2009-06-02 05:14:27 +0000 | [diff] [blame] | 403 | struct rtable *rt; |
Bart De Schuymer | f216f08 | 2006-12-05 13:45:21 -0800 | [diff] [blame] | 404 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | if (nf_bridge->mask & BRNF_PKT_TYPE) { |
| 407 | skb->pkt_type = PACKET_OTHERHOST; |
| 408 | nf_bridge->mask ^= BRNF_PKT_TYPE; |
| 409 | } |
| 410 | nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | if (dnat_took_place(skb)) { |
Bart De Schuymer | f216f08 | 2006-12-05 13:45:21 -0800 | [diff] [blame] | 412 | if ((err = ip_route_input(skb, iph->daddr, iph->saddr, iph->tos, dev))) { |
Eric Dumazet | f3abc9b | 2009-08-24 19:35:38 +0200 | [diff] [blame] | 413 | struct in_device *in_dev = __in_dev_get_rcu(dev); |
Bart De Schuymer | f216f08 | 2006-12-05 13:45:21 -0800 | [diff] [blame] | 414 | |
| 415 | /* If err equals -EHOSTUNREACH the error is due to a |
| 416 | * martian destination or due to the fact that |
| 417 | * forwarding is disabled. For most martian packets, |
| 418 | * ip_route_output_key() will fail. It won't fail for 2 types of |
| 419 | * martian destinations: loopback destinations and destination |
| 420 | * 0.0.0.0. In both cases the packet will be dropped because the |
| 421 | * destination is the loopback device and not the bridge. */ |
| 422 | if (err != -EHOSTUNREACH || !in_dev || IN_DEV_FORWARD(in_dev)) |
| 423 | goto free_skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | |
David S. Miller | 78fbfd8 | 2011-03-12 00:00:52 -0500 | [diff] [blame] | 425 | rt = ip_route_output(dev_net(dev), iph->daddr, 0, |
| 426 | RT_TOS(iph->tos), 0); |
David S. Miller | b23dd4f | 2011-03-02 14:31:35 -0800 | [diff] [blame] | 427 | if (!IS_ERR(rt)) { |
Bart De Schuymer | 1c011be | 2005-09-14 20:55:16 -0700 | [diff] [blame] | 428 | /* - Bridged-and-DNAT'ed traffic doesn't |
Bart De Schuymer | f216f08 | 2006-12-05 13:45:21 -0800 | [diff] [blame] | 429 | * require ip_forwarding. */ |
David S. Miller | b23dd4f | 2011-03-02 14:31:35 -0800 | [diff] [blame] | 430 | if (rt->dst.dev == dev) { |
| 431 | skb_dst_set(skb, &rt->dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | goto bridged_dnat; |
| 433 | } |
David S. Miller | b23dd4f | 2011-03-02 14:31:35 -0800 | [diff] [blame] | 434 | ip_rt_put(rt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | } |
Bart De Schuymer | f216f08 | 2006-12-05 13:45:21 -0800 | [diff] [blame] | 436 | free_skb: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | kfree_skb(skb); |
| 438 | return 0; |
| 439 | } else { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 440 | if (skb_dst(skb)->dev == dev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | bridged_dnat: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | skb->dev = nf_bridge->physindev; |
Bart De Schuymer | e179e63 | 2010-04-15 12:26:39 +0200 | [diff] [blame] | 443 | nf_bridge_update_protocol(skb); |
Patrick McHardy | fc38582 | 2007-05-03 03:36:16 -0700 | [diff] [blame] | 444 | nf_bridge_push_encap_header(skb); |
Jan Engelhardt | 713aefa | 2010-03-23 04:07:21 +0100 | [diff] [blame] | 445 | NF_HOOK_THRESH(NFPROTO_BRIDGE, |
| 446 | NF_BR_PRE_ROUTING, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | skb, skb->dev, NULL, |
| 448 | br_nf_pre_routing_finish_bridge, |
| 449 | 1); |
| 450 | return 0; |
| 451 | } |
Stephen Hemminger | 789bc3e | 2006-03-20 22:57:32 -0800 | [diff] [blame] | 452 | memcpy(eth_hdr(skb)->h_dest, dev->dev_addr, ETH_ALEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | skb->pkt_type = PACKET_HOST; |
| 454 | } |
| 455 | } else { |
Eric Dumazet | 511c3f9 | 2009-06-02 05:14:27 +0000 | [diff] [blame] | 456 | rt = bridge_parent_rtable(nf_bridge->physindev); |
| 457 | if (!rt) { |
Simon Wunderlich | 4adf0af | 2008-07-30 16:27:55 -0700 | [diff] [blame] | 458 | kfree_skb(skb); |
| 459 | return 0; |
| 460 | } |
Patrick McHardy | f9181f4 | 2010-06-15 17:31:06 +0200 | [diff] [blame] | 461 | skb_dst_set_noref(skb, &rt->dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | } |
| 463 | |
| 464 | skb->dev = nf_bridge->physindev; |
Bart De Schuymer | e179e63 | 2010-04-15 12:26:39 +0200 | [diff] [blame] | 465 | nf_bridge_update_protocol(skb); |
Patrick McHardy | fc38582 | 2007-05-03 03:36:16 -0700 | [diff] [blame] | 466 | nf_bridge_push_encap_header(skb); |
Jan Engelhardt | 713aefa | 2010-03-23 04:07:21 +0100 | [diff] [blame] | 467 | NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | br_handle_frame_finish, 1); |
| 469 | |
| 470 | return 0; |
| 471 | } |
| 472 | |
| 473 | /* Some common code for IPv4/IPv6 */ |
Stephen Hemminger | 5dce971 | 2006-02-09 17:09:38 -0800 | [diff] [blame] | 474 | static struct net_device *setup_pre_routing(struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | { |
| 476 | struct nf_bridge_info *nf_bridge = skb->nf_bridge; |
| 477 | |
| 478 | if (skb->pkt_type == PACKET_OTHERHOST) { |
| 479 | skb->pkt_type = PACKET_HOST; |
| 480 | nf_bridge->mask |= BRNF_PKT_TYPE; |
| 481 | } |
| 482 | |
| 483 | nf_bridge->mask |= BRNF_NF_BRIDGE_PREROUTING; |
| 484 | nf_bridge->physindev = skb->dev; |
| 485 | skb->dev = bridge_parent(skb->dev); |
Bart De Schuymer | e179e63 | 2010-04-15 12:26:39 +0200 | [diff] [blame] | 486 | if (skb->protocol == htons(ETH_P_8021Q)) |
| 487 | nf_bridge->mask |= BRNF_8021Q; |
| 488 | else if (skb->protocol == htons(ETH_P_PPP_SES)) |
| 489 | nf_bridge->mask |= BRNF_PPPoE; |
Stephen Hemminger | 5dce971 | 2006-02-09 17:09:38 -0800 | [diff] [blame] | 490 | |
| 491 | return skb->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | } |
| 493 | |
| 494 | /* We only check the length. A bridge shouldn't do any hop-by-hop stuff anyway */ |
| 495 | static int check_hbh_len(struct sk_buff *skb) |
| 496 | { |
Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 497 | unsigned char *raw = (u8 *)(ipv6_hdr(skb) + 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | u32 pkt_len; |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 499 | const unsigned char *nh = skb_network_header(skb); |
| 500 | int off = raw - nh; |
Stephen Hemminger | 789bc3e | 2006-03-20 22:57:32 -0800 | [diff] [blame] | 501 | int len = (raw[1] + 1) << 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | |
| 503 | if ((raw + len) - skb->data > skb_headlen(skb)) |
| 504 | goto bad; |
| 505 | |
| 506 | off += 2; |
| 507 | len -= 2; |
| 508 | |
| 509 | while (len > 0) { |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 510 | int optlen = nh[off + 1] + 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 512 | switch (nh[off]) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | case IPV6_TLV_PAD0: |
| 514 | optlen = 1; |
| 515 | break; |
| 516 | |
| 517 | case IPV6_TLV_PADN: |
| 518 | break; |
| 519 | |
| 520 | case IPV6_TLV_JUMBO: |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 521 | if (nh[off + 1] != 4 || (off & 3) != 2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | goto bad; |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 523 | pkt_len = ntohl(*(__be32 *) (nh + off + 2)); |
Bart De Schuymer | b036648 | 2005-12-19 14:00:08 -0800 | [diff] [blame] | 524 | if (pkt_len <= IPV6_MAXPLEN || |
Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 525 | ipv6_hdr(skb)->payload_len) |
Bart De Schuymer | b036648 | 2005-12-19 14:00:08 -0800 | [diff] [blame] | 526 | goto bad; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | if (pkt_len > skb->len - sizeof(struct ipv6hdr)) |
| 528 | goto bad; |
Bart De Schuymer | b036648 | 2005-12-19 14:00:08 -0800 | [diff] [blame] | 529 | if (pskb_trim_rcsum(skb, |
Stephen Hemminger | 789bc3e | 2006-03-20 22:57:32 -0800 | [diff] [blame] | 530 | pkt_len + sizeof(struct ipv6hdr))) |
Bart De Schuymer | b036648 | 2005-12-19 14:00:08 -0800 | [diff] [blame] | 531 | goto bad; |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 532 | nh = skb_network_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | break; |
| 534 | default: |
| 535 | if (optlen > len) |
| 536 | goto bad; |
| 537 | break; |
| 538 | } |
| 539 | off += optlen; |
| 540 | len -= optlen; |
| 541 | } |
| 542 | if (len == 0) |
| 543 | return 0; |
| 544 | bad: |
| 545 | return -1; |
| 546 | |
| 547 | } |
| 548 | |
| 549 | /* Replicate the checks that IPv6 does on packet reception and pass the packet |
| 550 | * to ip6tables, which doesn't support NAT, so things are fairly simple. */ |
| 551 | static unsigned int br_nf_pre_routing_ipv6(unsigned int hook, |
Stephen Hemminger | 789bc3e | 2006-03-20 22:57:32 -0800 | [diff] [blame] | 552 | struct sk_buff *skb, |
| 553 | const struct net_device *in, |
| 554 | const struct net_device *out, |
| 555 | int (*okfn)(struct sk_buff *)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | { |
| 557 | struct ipv6hdr *hdr; |
| 558 | u32 pkt_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | |
| 560 | if (skb->len < sizeof(struct ipv6hdr)) |
Herbert Xu | deef4b5 | 2010-12-09 17:38:11 +0000 | [diff] [blame] | 561 | return NF_DROP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | |
| 563 | if (!pskb_may_pull(skb, sizeof(struct ipv6hdr))) |
Herbert Xu | deef4b5 | 2010-12-09 17:38:11 +0000 | [diff] [blame] | 564 | return NF_DROP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | |
Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 566 | hdr = ipv6_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | |
| 568 | if (hdr->version != 6) |
Herbert Xu | deef4b5 | 2010-12-09 17:38:11 +0000 | [diff] [blame] | 569 | return NF_DROP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | |
| 571 | pkt_len = ntohs(hdr->payload_len); |
| 572 | |
| 573 | if (pkt_len || hdr->nexthdr != NEXTHDR_HOP) { |
| 574 | if (pkt_len + sizeof(struct ipv6hdr) > skb->len) |
Herbert Xu | deef4b5 | 2010-12-09 17:38:11 +0000 | [diff] [blame] | 575 | return NF_DROP; |
Herbert Xu | b38dfee | 2006-06-09 16:13:01 -0700 | [diff] [blame] | 576 | if (pskb_trim_rcsum(skb, pkt_len + sizeof(struct ipv6hdr))) |
Herbert Xu | deef4b5 | 2010-12-09 17:38:11 +0000 | [diff] [blame] | 577 | return NF_DROP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | } |
| 579 | if (hdr->nexthdr == NEXTHDR_HOP && check_hbh_len(skb)) |
Herbert Xu | deef4b5 | 2010-12-09 17:38:11 +0000 | [diff] [blame] | 580 | return NF_DROP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | |
Stephen Hemminger | 789bc3e | 2006-03-20 22:57:32 -0800 | [diff] [blame] | 582 | nf_bridge_put(skb->nf_bridge); |
Stephen Hemminger | fdeabde | 2006-03-20 22:58:21 -0800 | [diff] [blame] | 583 | if (!nf_bridge_alloc(skb)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | return NF_DROP; |
Stephen Hemminger | 5dce971 | 2006-02-09 17:09:38 -0800 | [diff] [blame] | 585 | if (!setup_pre_routing(skb)) |
| 586 | return NF_DROP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | |
Bart De Schuymer | e179e63 | 2010-04-15 12:26:39 +0200 | [diff] [blame] | 588 | skb->protocol = htons(ETH_P_IPV6); |
Jan Engelhardt | 713aefa | 2010-03-23 04:07:21 +0100 | [diff] [blame] | 589 | NF_HOOK(NFPROTO_IPV6, NF_INET_PRE_ROUTING, skb, skb->dev, NULL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | br_nf_pre_routing_finish_ipv6); |
| 591 | |
| 592 | return NF_STOLEN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | } |
| 594 | |
| 595 | /* Direct IPv6 traffic to br_nf_pre_routing_ipv6. |
| 596 | * Replicate the checks that IPv4 does on packet reception. |
| 597 | * Set skb->dev to the bridge device (i.e. parent of the |
| 598 | * receiving device) to make netfilter happy, the REDIRECT |
| 599 | * target in particular. Save the original destination IP |
| 600 | * address to be able to detect DNAT afterwards. */ |
Herbert Xu | 3db05fe | 2007-10-15 00:53:15 -0700 | [diff] [blame] | 601 | static unsigned int br_nf_pre_routing(unsigned int hook, struct sk_buff *skb, |
Stephen Hemminger | ee02b3a | 2006-01-06 13:13:29 -0800 | [diff] [blame] | 602 | const struct net_device *in, |
| 603 | const struct net_device *out, |
| 604 | int (*okfn)(struct sk_buff *)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | { |
Patrick McHardy | 4df53d8 | 2010-07-02 09:32:57 +0200 | [diff] [blame] | 606 | struct net_bridge_port *p; |
| 607 | struct net_bridge *br; |
Evgeniy Polyakov | e7c243c | 2007-08-24 23:36:29 -0700 | [diff] [blame] | 608 | __u32 len = nf_bridge_encap_header_len(skb); |
| 609 | |
Evgeniy Polyakov | e7c243c | 2007-08-24 23:36:29 -0700 | [diff] [blame] | 610 | if (unlikely(!pskb_may_pull(skb, len))) |
Herbert Xu | deef4b5 | 2010-12-09 17:38:11 +0000 | [diff] [blame] | 611 | return NF_DROP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | |
David S. Miller | e490c1de | 2010-07-02 22:42:06 -0700 | [diff] [blame] | 613 | p = br_port_get_rcu(in); |
Patrick McHardy | 4df53d8 | 2010-07-02 09:32:57 +0200 | [diff] [blame] | 614 | if (p == NULL) |
Herbert Xu | deef4b5 | 2010-12-09 17:38:11 +0000 | [diff] [blame] | 615 | return NF_DROP; |
Patrick McHardy | 4df53d8 | 2010-07-02 09:32:57 +0200 | [diff] [blame] | 616 | br = p->br; |
| 617 | |
Michael Milner | 516299d | 2007-04-12 22:14:23 -0700 | [diff] [blame] | 618 | if (skb->protocol == htons(ETH_P_IPV6) || IS_VLAN_IPV6(skb) || |
| 619 | IS_PPPOE_IPV6(skb)) { |
Patrick McHardy | 4df53d8 | 2010-07-02 09:32:57 +0200 | [diff] [blame] | 620 | if (!brnf_call_ip6tables && !br->nf_call_ip6tables) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | return NF_ACCEPT; |
Patrick McHardy | 4df53d8 | 2010-07-02 09:32:57 +0200 | [diff] [blame] | 622 | |
Patrick McHardy | fc38582 | 2007-05-03 03:36:16 -0700 | [diff] [blame] | 623 | nf_bridge_pull_encap_header_rcsum(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | return br_nf_pre_routing_ipv6(hook, skb, in, out, okfn); |
| 625 | } |
Patrick McHardy | 4df53d8 | 2010-07-02 09:32:57 +0200 | [diff] [blame] | 626 | |
| 627 | if (!brnf_call_iptables && !br->nf_call_iptables) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | return NF_ACCEPT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | |
Michael Milner | 516299d | 2007-04-12 22:14:23 -0700 | [diff] [blame] | 630 | if (skb->protocol != htons(ETH_P_IP) && !IS_VLAN_IP(skb) && |
| 631 | !IS_PPPOE_IP(skb)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | return NF_ACCEPT; |
| 633 | |
Patrick McHardy | fc38582 | 2007-05-03 03:36:16 -0700 | [diff] [blame] | 634 | nf_bridge_pull_encap_header_rcsum(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | |
Bandan Das | 462fb2a | 2010-09-19 09:34:33 +0000 | [diff] [blame] | 636 | if (br_parse_ip_options(skb)) |
Herbert Xu | deef4b5 | 2010-12-09 17:38:11 +0000 | [diff] [blame] | 637 | return NF_DROP; |
Herbert Xu | 1776206 | 2010-07-05 21:29:28 +0000 | [diff] [blame] | 638 | |
Stephen Hemminger | 789bc3e | 2006-03-20 22:57:32 -0800 | [diff] [blame] | 639 | nf_bridge_put(skb->nf_bridge); |
Stephen Hemminger | fdeabde | 2006-03-20 22:58:21 -0800 | [diff] [blame] | 640 | if (!nf_bridge_alloc(skb)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | return NF_DROP; |
Stephen Hemminger | 5dce971 | 2006-02-09 17:09:38 -0800 | [diff] [blame] | 642 | if (!setup_pre_routing(skb)) |
| 643 | return NF_DROP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | store_orig_dstaddr(skb); |
Bart De Schuymer | e179e63 | 2010-04-15 12:26:39 +0200 | [diff] [blame] | 645 | skb->protocol = htons(ETH_P_IP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | |
Jan Engelhardt | 713aefa | 2010-03-23 04:07:21 +0100 | [diff] [blame] | 647 | NF_HOOK(NFPROTO_IPV4, NF_INET_PRE_ROUTING, skb, skb->dev, NULL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | br_nf_pre_routing_finish); |
| 649 | |
| 650 | return NF_STOLEN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | } |
| 652 | |
| 653 | |
| 654 | /* PF_BRIDGE/LOCAL_IN ************************************************/ |
| 655 | /* The packet is locally destined, which requires a real |
| 656 | * dst_entry, so detach the fake one. On the way up, the |
| 657 | * packet would pass through PRE_ROUTING again (which already |
| 658 | * took place when the packet entered the bridge), but we |
| 659 | * register an IPv4 PRE_ROUTING 'sabotage' hook that will |
| 660 | * prevent this from happening. */ |
Herbert Xu | 3db05fe | 2007-10-15 00:53:15 -0700 | [diff] [blame] | 661 | static unsigned int br_nf_local_in(unsigned int hook, struct sk_buff *skb, |
Stephen Hemminger | 789bc3e | 2006-03-20 22:57:32 -0800 | [diff] [blame] | 662 | const struct net_device *in, |
| 663 | const struct net_device *out, |
| 664 | int (*okfn)(struct sk_buff *)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | { |
Eric Dumazet | 511c3f9 | 2009-06-02 05:14:27 +0000 | [diff] [blame] | 666 | struct rtable *rt = skb_rtable(skb); |
| 667 | |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 668 | if (rt && rt == bridge_parent_rtable(in)) |
| 669 | skb_dst_drop(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | |
| 671 | return NF_ACCEPT; |
| 672 | } |
| 673 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | /* PF_BRIDGE/FORWARD *************************************************/ |
| 675 | static int br_nf_forward_finish(struct sk_buff *skb) |
| 676 | { |
| 677 | struct nf_bridge_info *nf_bridge = skb->nf_bridge; |
| 678 | struct net_device *in; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | |
Stephen Hemminger | 8b42ec3 | 2006-03-20 22:58:05 -0800 | [diff] [blame] | 680 | if (skb->protocol != htons(ETH_P_ARP) && !IS_VLAN_ARP(skb)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | in = nf_bridge->physindev; |
| 682 | if (nf_bridge->mask & BRNF_PKT_TYPE) { |
| 683 | skb->pkt_type = PACKET_OTHERHOST; |
| 684 | nf_bridge->mask ^= BRNF_PKT_TYPE; |
| 685 | } |
Bart De Schuymer | e94c674 | 2010-05-13 14:55:34 +0200 | [diff] [blame] | 686 | nf_bridge_update_protocol(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | } else { |
| 688 | in = *((struct net_device **)(skb->cb)); |
| 689 | } |
Patrick McHardy | fc38582 | 2007-05-03 03:36:16 -0700 | [diff] [blame] | 690 | nf_bridge_push_encap_header(skb); |
Bart De Schuymer | e179e63 | 2010-04-15 12:26:39 +0200 | [diff] [blame] | 691 | |
Jan Engelhardt | 713aefa | 2010-03-23 04:07:21 +0100 | [diff] [blame] | 692 | NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_FORWARD, skb, in, |
Stephen Hemminger | 789bc3e | 2006-03-20 22:57:32 -0800 | [diff] [blame] | 693 | skb->dev, br_forward_finish, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | return 0; |
| 695 | } |
| 696 | |
| 697 | /* This is the 'purely bridged' case. For IP, we pass the packet to |
| 698 | * netfilter with indev and outdev set to the bridge device, |
| 699 | * but we are still able to filter on the 'real' indev/outdev |
| 700 | * because of the physdev module. For ARP, indev and outdev are the |
| 701 | * bridge ports. */ |
Herbert Xu | 3db05fe | 2007-10-15 00:53:15 -0700 | [diff] [blame] | 702 | static unsigned int br_nf_forward_ip(unsigned int hook, struct sk_buff *skb, |
Stephen Hemminger | 789bc3e | 2006-03-20 22:57:32 -0800 | [diff] [blame] | 703 | const struct net_device *in, |
| 704 | const struct net_device *out, |
| 705 | int (*okfn)(struct sk_buff *)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | struct nf_bridge_info *nf_bridge; |
Stephen Hemminger | 5dce971 | 2006-02-09 17:09:38 -0800 | [diff] [blame] | 708 | struct net_device *parent; |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 709 | u_int8_t pf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | |
| 711 | if (!skb->nf_bridge) |
| 712 | return NF_ACCEPT; |
| 713 | |
Patrick McHardy | 2dc2f20 | 2008-01-20 06:25:48 -0800 | [diff] [blame] | 714 | /* Need exclusive nf_bridge_info since we might have multiple |
| 715 | * different physoutdevs. */ |
| 716 | if (!nf_bridge_unshare(skb)) |
| 717 | return NF_DROP; |
| 718 | |
Stephen Hemminger | 5dce971 | 2006-02-09 17:09:38 -0800 | [diff] [blame] | 719 | parent = bridge_parent(out); |
| 720 | if (!parent) |
| 721 | return NF_DROP; |
| 722 | |
Michael Milner | 516299d | 2007-04-12 22:14:23 -0700 | [diff] [blame] | 723 | if (skb->protocol == htons(ETH_P_IP) || IS_VLAN_IP(skb) || |
| 724 | IS_PPPOE_IP(skb)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | pf = PF_INET; |
Herbert Xu | a2bd40a | 2009-01-12 00:06:02 +0000 | [diff] [blame] | 726 | else if (skb->protocol == htons(ETH_P_IPV6) || IS_VLAN_IPV6(skb) || |
| 727 | IS_PPPOE_IPV6(skb)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | pf = PF_INET6; |
Herbert Xu | a2bd40a | 2009-01-12 00:06:02 +0000 | [diff] [blame] | 729 | else |
| 730 | return NF_ACCEPT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | |
Herbert Xu | 3db05fe | 2007-10-15 00:53:15 -0700 | [diff] [blame] | 732 | nf_bridge_pull_encap_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | nf_bridge = skb->nf_bridge; |
| 735 | if (skb->pkt_type == PACKET_OTHERHOST) { |
| 736 | skb->pkt_type = PACKET_HOST; |
| 737 | nf_bridge->mask |= BRNF_PKT_TYPE; |
| 738 | } |
| 739 | |
Herbert Xu | 6b1e960 | 2011-03-18 05:27:28 +0000 | [diff] [blame] | 740 | if (br_parse_ip_options(skb)) |
| 741 | return NF_DROP; |
| 742 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | /* The physdev module checks on this */ |
| 744 | nf_bridge->mask |= BRNF_BRIDGED; |
| 745 | nf_bridge->physoutdev = skb->dev; |
Bart De Schuymer | e179e63 | 2010-04-15 12:26:39 +0200 | [diff] [blame] | 746 | if (pf == PF_INET) |
| 747 | skb->protocol = htons(ETH_P_IP); |
| 748 | else |
| 749 | skb->protocol = htons(ETH_P_IPV6); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | |
Patrick McHardy | 6e23ae2 | 2007-11-19 18:53:30 -0800 | [diff] [blame] | 751 | NF_HOOK(pf, NF_INET_FORWARD, skb, bridge_parent(in), parent, |
Stephen Hemminger | 5dce971 | 2006-02-09 17:09:38 -0800 | [diff] [blame] | 752 | br_nf_forward_finish); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | |
| 754 | return NF_STOLEN; |
| 755 | } |
| 756 | |
Herbert Xu | 3db05fe | 2007-10-15 00:53:15 -0700 | [diff] [blame] | 757 | static unsigned int br_nf_forward_arp(unsigned int hook, struct sk_buff *skb, |
Stephen Hemminger | 789bc3e | 2006-03-20 22:57:32 -0800 | [diff] [blame] | 758 | const struct net_device *in, |
| 759 | const struct net_device *out, |
| 760 | int (*okfn)(struct sk_buff *)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | { |
Patrick McHardy | 4df53d8 | 2010-07-02 09:32:57 +0200 | [diff] [blame] | 762 | struct net_bridge_port *p; |
| 763 | struct net_bridge *br; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | struct net_device **d = (struct net_device **)(skb->cb); |
| 765 | |
David S. Miller | e490c1de | 2010-07-02 22:42:06 -0700 | [diff] [blame] | 766 | p = br_port_get_rcu(out); |
Patrick McHardy | 4df53d8 | 2010-07-02 09:32:57 +0200 | [diff] [blame] | 767 | if (p == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | return NF_ACCEPT; |
Patrick McHardy | 4df53d8 | 2010-07-02 09:32:57 +0200 | [diff] [blame] | 769 | br = p->br; |
| 770 | |
| 771 | if (!brnf_call_arptables && !br->nf_call_arptables) |
| 772 | return NF_ACCEPT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | |
Stephen Hemminger | f8a2602 | 2006-03-20 22:57:46 -0800 | [diff] [blame] | 774 | if (skb->protocol != htons(ETH_P_ARP)) { |
Stephen Hemminger | 8b42ec3 | 2006-03-20 22:58:05 -0800 | [diff] [blame] | 775 | if (!IS_VLAN_ARP(skb)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | return NF_ACCEPT; |
Herbert Xu | 3db05fe | 2007-10-15 00:53:15 -0700 | [diff] [blame] | 777 | nf_bridge_pull_encap_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | } |
| 779 | |
Arnaldo Carvalho de Melo | d0a92be | 2007-03-12 20:56:31 -0300 | [diff] [blame] | 780 | if (arp_hdr(skb)->ar_pln != 4) { |
Patrick McHardy | fc38582 | 2007-05-03 03:36:16 -0700 | [diff] [blame] | 781 | if (IS_VLAN_ARP(skb)) |
Herbert Xu | 3db05fe | 2007-10-15 00:53:15 -0700 | [diff] [blame] | 782 | nf_bridge_push_encap_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | return NF_ACCEPT; |
| 784 | } |
| 785 | *d = (struct net_device *)in; |
Jan Engelhardt | fdc9314 | 2008-10-20 03:34:51 -0700 | [diff] [blame] | 786 | NF_HOOK(NFPROTO_ARP, NF_ARP_FORWARD, skb, (struct net_device *)in, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | (struct net_device *)out, br_nf_forward_finish); |
| 788 | |
| 789 | return NF_STOLEN; |
| 790 | } |
| 791 | |
hummerbliss@gmail.com | c197fac | 2009-04-20 17:12:35 +0200 | [diff] [blame] | 792 | #if defined(CONFIG_NF_CONNTRACK_IPV4) || defined(CONFIG_NF_CONNTRACK_IPV4_MODULE) |
Patrick McHardy | 2e2f7ae | 2006-04-04 13:42:35 -0700 | [diff] [blame] | 793 | static int br_nf_dev_queue_xmit(struct sk_buff *skb) |
| 794 | { |
Bandan Das | 462fb2a | 2010-09-19 09:34:33 +0000 | [diff] [blame] | 795 | int ret; |
| 796 | |
Bart De Schuymer | e179e63 | 2010-04-15 12:26:39 +0200 | [diff] [blame] | 797 | if (skb->nfct != NULL && skb->protocol == htons(ETH_P_IP) && |
Bart De Schuymer | 6c79bf0 | 2010-04-20 16:22:01 +0200 | [diff] [blame] | 798 | skb->len + nf_bridge_mtu_reduction(skb) > skb->dev->mtu && |
David S. Miller | 87f94b4 | 2010-09-01 18:06:39 -0700 | [diff] [blame] | 799 | !skb_is_gso(skb)) { |
Bandan Das | 462fb2a | 2010-09-19 09:34:33 +0000 | [diff] [blame] | 800 | if (br_parse_ip_options(skb)) |
| 801 | /* Drop invalid packet */ |
| 802 | return NF_DROP; |
| 803 | ret = ip_fragment(skb, br_dev_queue_push_xmit); |
David S. Miller | 87f94b4 | 2010-09-01 18:06:39 -0700 | [diff] [blame] | 804 | } else |
Bandan Das | 462fb2a | 2010-09-19 09:34:33 +0000 | [diff] [blame] | 805 | ret = br_dev_queue_push_xmit(skb); |
| 806 | |
| 807 | return ret; |
Patrick McHardy | 2e2f7ae | 2006-04-04 13:42:35 -0700 | [diff] [blame] | 808 | } |
hummerbliss@gmail.com | c197fac | 2009-04-20 17:12:35 +0200 | [diff] [blame] | 809 | #else |
| 810 | static int br_nf_dev_queue_xmit(struct sk_buff *skb) |
| 811 | { |
| 812 | return br_dev_queue_push_xmit(skb); |
| 813 | } |
| 814 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | |
| 816 | /* PF_BRIDGE/POST_ROUTING ********************************************/ |
Herbert Xu | 3db05fe | 2007-10-15 00:53:15 -0700 | [diff] [blame] | 817 | static unsigned int br_nf_post_routing(unsigned int hook, struct sk_buff *skb, |
Stephen Hemminger | 789bc3e | 2006-03-20 22:57:32 -0800 | [diff] [blame] | 818 | const struct net_device *in, |
| 819 | const struct net_device *out, |
| 820 | int (*okfn)(struct sk_buff *)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | { |
Herbert Xu | 3db05fe | 2007-10-15 00:53:15 -0700 | [diff] [blame] | 822 | struct nf_bridge_info *nf_bridge = skb->nf_bridge; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | struct net_device *realoutdev = bridge_parent(skb->dev); |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 824 | u_int8_t pf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | |
Bart De Schuymer | ea2d9b4 | 2010-04-15 12:14:51 +0200 | [diff] [blame] | 826 | if (!nf_bridge || !(nf_bridge->mask & BRNF_BRIDGED)) |
Patrick McHardy | 81d9dda | 2007-11-13 02:58:44 -0800 | [diff] [blame] | 827 | return NF_ACCEPT; |
| 828 | |
Stephen Hemminger | 5dce971 | 2006-02-09 17:09:38 -0800 | [diff] [blame] | 829 | if (!realoutdev) |
| 830 | return NF_DROP; |
| 831 | |
Michael Milner | 516299d | 2007-04-12 22:14:23 -0700 | [diff] [blame] | 832 | if (skb->protocol == htons(ETH_P_IP) || IS_VLAN_IP(skb) || |
| 833 | IS_PPPOE_IP(skb)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | pf = PF_INET; |
Herbert Xu | a2bd40a | 2009-01-12 00:06:02 +0000 | [diff] [blame] | 835 | else if (skb->protocol == htons(ETH_P_IPV6) || IS_VLAN_IPV6(skb) || |
| 836 | IS_PPPOE_IPV6(skb)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | pf = PF_INET6; |
Herbert Xu | a2bd40a | 2009-01-12 00:06:02 +0000 | [diff] [blame] | 838 | else |
| 839 | return NF_ACCEPT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | /* We assume any code from br_dev_queue_push_xmit onwards doesn't care |
| 842 | * about the value of skb->pkt_type. */ |
| 843 | if (skb->pkt_type == PACKET_OTHERHOST) { |
| 844 | skb->pkt_type = PACKET_HOST; |
| 845 | nf_bridge->mask |= BRNF_PKT_TYPE; |
| 846 | } |
| 847 | |
Patrick McHardy | fc38582 | 2007-05-03 03:36:16 -0700 | [diff] [blame] | 848 | nf_bridge_pull_encap_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | nf_bridge_save_header(skb); |
Bart De Schuymer | e179e63 | 2010-04-15 12:26:39 +0200 | [diff] [blame] | 850 | if (pf == PF_INET) |
| 851 | skb->protocol = htons(ETH_P_IP); |
| 852 | else |
| 853 | skb->protocol = htons(ETH_P_IPV6); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | |
Patrick McHardy | 6e23ae2 | 2007-11-19 18:53:30 -0800 | [diff] [blame] | 855 | NF_HOOK(pf, NF_INET_POST_ROUTING, skb, NULL, realoutdev, |
Patrick McHardy | 2e2f7ae | 2006-04-04 13:42:35 -0700 | [diff] [blame] | 856 | br_nf_dev_queue_xmit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | |
| 858 | return NF_STOLEN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | } |
| 860 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | /* IP/SABOTAGE *****************************************************/ |
| 862 | /* Don't hand locally destined packets to PF_INET(6)/PRE_ROUTING |
| 863 | * for the second time. */ |
Herbert Xu | 3db05fe | 2007-10-15 00:53:15 -0700 | [diff] [blame] | 864 | static unsigned int ip_sabotage_in(unsigned int hook, struct sk_buff *skb, |
Stephen Hemminger | 789bc3e | 2006-03-20 22:57:32 -0800 | [diff] [blame] | 865 | const struct net_device *in, |
| 866 | const struct net_device *out, |
| 867 | int (*okfn)(struct sk_buff *)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | { |
Herbert Xu | 3db05fe | 2007-10-15 00:53:15 -0700 | [diff] [blame] | 869 | if (skb->nf_bridge && |
| 870 | !(skb->nf_bridge->mask & BRNF_NF_BRIDGE_PREROUTING)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | return NF_STOP; |
| 872 | } |
| 873 | |
| 874 | return NF_ACCEPT; |
| 875 | } |
| 876 | |
Bart De Schuymer | ea2d9b4 | 2010-04-15 12:14:51 +0200 | [diff] [blame] | 877 | /* For br_nf_post_routing, we need (prio = NF_BR_PRI_LAST), because |
| 878 | * br_dev_queue_push_xmit is called afterwards */ |
Patrick McHardy | 1999414 | 2007-12-05 01:23:00 -0800 | [diff] [blame] | 879 | static struct nf_hook_ops br_nf_ops[] __read_mostly = { |
Cyrill Gorcunov | 1490fd8 | 2009-07-03 20:11:57 +0000 | [diff] [blame] | 880 | { |
| 881 | .hook = br_nf_pre_routing, |
| 882 | .owner = THIS_MODULE, |
| 883 | .pf = PF_BRIDGE, |
| 884 | .hooknum = NF_BR_PRE_ROUTING, |
| 885 | .priority = NF_BR_PRI_BRNF, |
| 886 | }, |
| 887 | { |
| 888 | .hook = br_nf_local_in, |
| 889 | .owner = THIS_MODULE, |
| 890 | .pf = PF_BRIDGE, |
| 891 | .hooknum = NF_BR_LOCAL_IN, |
| 892 | .priority = NF_BR_PRI_BRNF, |
| 893 | }, |
| 894 | { |
| 895 | .hook = br_nf_forward_ip, |
| 896 | .owner = THIS_MODULE, |
| 897 | .pf = PF_BRIDGE, |
| 898 | .hooknum = NF_BR_FORWARD, |
| 899 | .priority = NF_BR_PRI_BRNF - 1, |
| 900 | }, |
| 901 | { |
| 902 | .hook = br_nf_forward_arp, |
| 903 | .owner = THIS_MODULE, |
| 904 | .pf = PF_BRIDGE, |
| 905 | .hooknum = NF_BR_FORWARD, |
| 906 | .priority = NF_BR_PRI_BRNF, |
| 907 | }, |
| 908 | { |
Cyrill Gorcunov | 1490fd8 | 2009-07-03 20:11:57 +0000 | [diff] [blame] | 909 | .hook = br_nf_post_routing, |
| 910 | .owner = THIS_MODULE, |
| 911 | .pf = PF_BRIDGE, |
| 912 | .hooknum = NF_BR_POST_ROUTING, |
| 913 | .priority = NF_BR_PRI_LAST, |
| 914 | }, |
| 915 | { |
| 916 | .hook = ip_sabotage_in, |
| 917 | .owner = THIS_MODULE, |
| 918 | .pf = PF_INET, |
| 919 | .hooknum = NF_INET_PRE_ROUTING, |
| 920 | .priority = NF_IP_PRI_FIRST, |
| 921 | }, |
| 922 | { |
| 923 | .hook = ip_sabotage_in, |
| 924 | .owner = THIS_MODULE, |
| 925 | .pf = PF_INET6, |
| 926 | .hooknum = NF_INET_PRE_ROUTING, |
| 927 | .priority = NF_IP6_PRI_FIRST, |
| 928 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | }; |
| 930 | |
| 931 | #ifdef CONFIG_SYSCTL |
| 932 | static |
Alexey Dobriyan | 8d65af7 | 2009-09-23 15:57:19 -0700 | [diff] [blame] | 933 | int brnf_sysctl_call_tables(ctl_table * ctl, int write, |
Stephen Hemminger | 789bc3e | 2006-03-20 22:57:32 -0800 | [diff] [blame] | 934 | void __user * buffer, size_t * lenp, loff_t * ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | { |
| 936 | int ret; |
| 937 | |
Alexey Dobriyan | 8d65af7 | 2009-09-23 15:57:19 -0700 | [diff] [blame] | 938 | ret = proc_dointvec(ctl, write, buffer, lenp, ppos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | |
| 940 | if (write && *(int *)(ctl->data)) |
| 941 | *(int *)(ctl->data) = 1; |
| 942 | return ret; |
| 943 | } |
| 944 | |
| 945 | static ctl_table brnf_table[] = { |
| 946 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | .procname = "bridge-nf-call-arptables", |
| 948 | .data = &brnf_call_arptables, |
| 949 | .maxlen = sizeof(int), |
| 950 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 951 | .proc_handler = brnf_sysctl_call_tables, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | }, |
| 953 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | .procname = "bridge-nf-call-iptables", |
| 955 | .data = &brnf_call_iptables, |
| 956 | .maxlen = sizeof(int), |
| 957 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 958 | .proc_handler = brnf_sysctl_call_tables, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | }, |
| 960 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | .procname = "bridge-nf-call-ip6tables", |
| 962 | .data = &brnf_call_ip6tables, |
| 963 | .maxlen = sizeof(int), |
| 964 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 965 | .proc_handler = brnf_sysctl_call_tables, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | }, |
| 967 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | .procname = "bridge-nf-filter-vlan-tagged", |
| 969 | .data = &brnf_filter_vlan_tagged, |
| 970 | .maxlen = sizeof(int), |
| 971 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 972 | .proc_handler = brnf_sysctl_call_tables, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | }, |
Michael Milner | 516299d | 2007-04-12 22:14:23 -0700 | [diff] [blame] | 974 | { |
Michael Milner | 516299d | 2007-04-12 22:14:23 -0700 | [diff] [blame] | 975 | .procname = "bridge-nf-filter-pppoe-tagged", |
| 976 | .data = &brnf_filter_pppoe_tagged, |
| 977 | .maxlen = sizeof(int), |
| 978 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 979 | .proc_handler = brnf_sysctl_call_tables, |
Michael Milner | 516299d | 2007-04-12 22:14:23 -0700 | [diff] [blame] | 980 | }, |
Eric W. Biederman | f8572d8 | 2009-11-05 13:32:03 -0800 | [diff] [blame] | 981 | { } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | }; |
| 983 | |
Pavel Emelyanov | b5ccd79 | 2008-01-09 00:30:05 -0800 | [diff] [blame] | 984 | static struct ctl_path brnf_path[] = { |
Eric W. Biederman | f8572d8 | 2009-11-05 13:32:03 -0800 | [diff] [blame] | 985 | { .procname = "net", }, |
| 986 | { .procname = "bridge", }, |
Pavel Emelyanov | b5ccd79 | 2008-01-09 00:30:05 -0800 | [diff] [blame] | 987 | { } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | }; |
| 989 | #endif |
| 990 | |
Patrick McHardy | 5eb87f4 | 2007-02-07 15:07:22 -0800 | [diff] [blame] | 991 | int __init br_netfilter_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | { |
Patrick McHardy | 5eb87f4 | 2007-02-07 15:07:22 -0800 | [diff] [blame] | 993 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 995 | ret = dst_entries_init(&fake_dst_ops); |
Patrick McHardy | 5eb87f4 | 2007-02-07 15:07:22 -0800 | [diff] [blame] | 996 | if (ret < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | return ret; |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 998 | |
| 999 | ret = nf_register_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops)); |
| 1000 | if (ret < 0) { |
| 1001 | dst_entries_destroy(&fake_dst_ops); |
| 1002 | return ret; |
| 1003 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | #ifdef CONFIG_SYSCTL |
Pavel Emelyanov | b5ccd79 | 2008-01-09 00:30:05 -0800 | [diff] [blame] | 1005 | brnf_sysctl_header = register_sysctl_paths(brnf_path, brnf_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | if (brnf_sysctl_header == NULL) { |
Stephen Hemminger | 789bc3e | 2006-03-20 22:57:32 -0800 | [diff] [blame] | 1007 | printk(KERN_WARNING |
| 1008 | "br_netfilter: can't register to sysctl.\n"); |
Patrick McHardy | 5eb87f4 | 2007-02-07 15:07:22 -0800 | [diff] [blame] | 1009 | nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops)); |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 1010 | dst_entries_destroy(&fake_dst_ops); |
Patrick McHardy | 5eb87f4 | 2007-02-07 15:07:22 -0800 | [diff] [blame] | 1011 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | } |
| 1013 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | printk(KERN_NOTICE "Bridge firewalling registered\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | return 0; |
| 1016 | } |
| 1017 | |
| 1018 | void br_netfilter_fini(void) |
| 1019 | { |
Patrick McHardy | 5eb87f4 | 2007-02-07 15:07:22 -0800 | [diff] [blame] | 1020 | nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | #ifdef CONFIG_SYSCTL |
| 1022 | unregister_sysctl_table(brnf_sysctl_header); |
| 1023 | #endif |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 1024 | dst_entries_destroy(&fake_dst_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | } |