diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /net/bridge/br_forward.c |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'net/bridge/br_forward.c')
-rw-r--r-- | net/bridge/br_forward.c | 159 |
1 files changed, 159 insertions, 0 deletions
diff --git a/net/bridge/br_forward.c b/net/bridge/br_forward.c new file mode 100644 index 000000000000..ef9f2095f96e --- /dev/null +++ b/net/bridge/br_forward.c | |||
@@ -0,0 +1,159 @@ | |||
1 | /* | ||
2 | * Forwarding decision | ||
3 | * Linux ethernet bridge | ||
4 | * | ||
5 | * Authors: | ||
6 | * Lennert Buytenhek <buytenh@gnu.org> | ||
7 | * | ||
8 | * $Id: br_forward.c,v 1.4 2001/08/14 22:05:57 davem Exp $ | ||
9 | * | ||
10 | * This program is free software; you can redistribute it and/or | ||
11 | * modify it under the terms of the GNU General Public License | ||
12 | * as published by the Free Software Foundation; either version | ||
13 | * 2 of the License, or (at your option) any later version. | ||
14 | */ | ||
15 | |||
16 | #include <linux/kernel.h> | ||
17 | #include <linux/netdevice.h> | ||
18 | #include <linux/skbuff.h> | ||
19 | #include <linux/netfilter_bridge.h> | ||
20 | #include "br_private.h" | ||
21 | |||
22 | static inline int should_deliver(const struct net_bridge_port *p, | ||
23 | const struct sk_buff *skb) | ||
24 | { | ||
25 | if (skb->dev == p->dev || | ||
26 | p->state != BR_STATE_FORWARDING) | ||
27 | return 0; | ||
28 | |||
29 | return 1; | ||
30 | } | ||
31 | |||
32 | int br_dev_queue_push_xmit(struct sk_buff *skb) | ||
33 | { | ||
34 | if (skb->len > skb->dev->mtu) | ||
35 | kfree_skb(skb); | ||
36 | else { | ||
37 | #ifdef CONFIG_BRIDGE_NETFILTER | ||
38 | /* ip_refrag calls ip_fragment, doesn't copy the MAC header. */ | ||
39 | nf_bridge_maybe_copy_header(skb); | ||
40 | #endif | ||
41 | skb_push(skb, ETH_HLEN); | ||
42 | |||
43 | dev_queue_xmit(skb); | ||
44 | } | ||
45 | |||
46 | return 0; | ||
47 | } | ||
48 | |||
49 | int br_forward_finish(struct sk_buff *skb) | ||
50 | { | ||
51 | NF_HOOK(PF_BRIDGE, NF_BR_POST_ROUTING, skb, NULL, skb->dev, | ||
52 | br_dev_queue_push_xmit); | ||
53 | |||
54 | return 0; | ||
55 | } | ||
56 | |||
57 | static void __br_deliver(const struct net_bridge_port *to, struct sk_buff *skb) | ||
58 | { | ||
59 | skb->dev = to->dev; | ||
60 | #ifdef CONFIG_NETFILTER_DEBUG | ||
61 | skb->nf_debug = 0; | ||
62 | #endif | ||
63 | NF_HOOK(PF_BRIDGE, NF_BR_LOCAL_OUT, skb, NULL, skb->dev, | ||
64 | br_forward_finish); | ||
65 | } | ||
66 | |||
67 | static void __br_forward(const struct net_bridge_port *to, struct sk_buff *skb) | ||
68 | { | ||
69 | struct net_device *indev; | ||
70 | |||
71 | indev = skb->dev; | ||
72 | skb->dev = to->dev; | ||
73 | skb->ip_summed = CHECKSUM_NONE; | ||
74 | |||
75 | NF_HOOK(PF_BRIDGE, NF_BR_FORWARD, skb, indev, skb->dev, | ||
76 | br_forward_finish); | ||
77 | } | ||
78 | |||
79 | /* called with rcu_read_lock */ | ||
80 | void br_deliver(const struct net_bridge_port *to, struct sk_buff *skb) | ||
81 | { | ||
82 | if (should_deliver(to, skb)) { | ||
83 | __br_deliver(to, skb); | ||
84 | return; | ||
85 | } | ||
86 | |||
87 | kfree_skb(skb); | ||
88 | } | ||
89 | |||
90 | /* called with rcu_read_lock */ | ||
91 | void br_forward(const struct net_bridge_port *to, struct sk_buff *skb) | ||
92 | { | ||
93 | if (should_deliver(to, skb)) { | ||
94 | __br_forward(to, skb); | ||
95 | return; | ||
96 | } | ||
97 | |||
98 | kfree_skb(skb); | ||
99 | } | ||
100 | |||
101 | /* called under bridge lock */ | ||
102 | static void br_flood(struct net_bridge *br, struct sk_buff *skb, int clone, | ||
103 | void (*__packet_hook)(const struct net_bridge_port *p, | ||
104 | struct sk_buff *skb)) | ||
105 | { | ||
106 | struct net_bridge_port *p; | ||
107 | struct net_bridge_port *prev; | ||
108 | |||
109 | if (clone) { | ||
110 | struct sk_buff *skb2; | ||
111 | |||
112 | if ((skb2 = skb_clone(skb, GFP_ATOMIC)) == NULL) { | ||
113 | br->statistics.tx_dropped++; | ||
114 | return; | ||
115 | } | ||
116 | |||
117 | skb = skb2; | ||
118 | } | ||
119 | |||
120 | prev = NULL; | ||
121 | |||
122 | list_for_each_entry_rcu(p, &br->port_list, list) { | ||
123 | if (should_deliver(p, skb)) { | ||
124 | if (prev != NULL) { | ||
125 | struct sk_buff *skb2; | ||
126 | |||
127 | if ((skb2 = skb_clone(skb, GFP_ATOMIC)) == NULL) { | ||
128 | br->statistics.tx_dropped++; | ||
129 | kfree_skb(skb); | ||
130 | return; | ||
131 | } | ||
132 | |||
133 | __packet_hook(prev, skb2); | ||
134 | } | ||
135 | |||
136 | prev = p; | ||
137 | } | ||
138 | } | ||
139 | |||
140 | if (prev != NULL) { | ||
141 | __packet_hook(prev, skb); | ||
142 | return; | ||
143 | } | ||
144 | |||
145 | kfree_skb(skb); | ||
146 | } | ||
147 | |||
148 | |||
149 | /* called with rcu_read_lock */ | ||
150 | void br_flood_deliver(struct net_bridge *br, struct sk_buff *skb, int clone) | ||
151 | { | ||
152 | br_flood(br, skb, clone, __br_deliver); | ||
153 | } | ||
154 | |||
155 | /* called under bridge lock */ | ||
156 | void br_flood_forward(struct net_bridge *br, struct sk_buff *skb, int clone) | ||
157 | { | ||
158 | br_flood(br, skb, clone, __br_forward); | ||
159 | } | ||