blob: 34f0d3e44ea77a28ee5ef7ebf25b73f95e53dbc0 [file] [log] [blame]
Harald Welte2e4e6a12006-01-12 13:30:04 -08001/* Kernel module to match the bridge port in and
2 * out device for IP packets coming into contact with a bridge. */
3
4/* (C) 2001-2003 Bart De Schuymer <bdschuym@pandora.be>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <linux/module.h>
12#include <linux/skbuff.h>
Andrew Mortondeb47c62006-08-15 00:04:56 -070013#include <linux/netfilter_bridge.h>
Harald Welte2e4e6a12006-01-12 13:30:04 -080014#include <linux/netfilter/xt_physdev.h>
15#include <linux/netfilter/x_tables.h>
16#include <linux/netfilter_bridge.h>
Harald Welte2e4e6a12006-01-12 13:30:04 -080017
18MODULE_LICENSE("GPL");
19MODULE_AUTHOR("Bart De Schuymer <bdschuym@pandora.be>");
20MODULE_DESCRIPTION("iptables bridge physical device match module");
21MODULE_ALIAS("ipt_physdev");
22MODULE_ALIAS("ip6t_physdev");
23
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070024static bool
Harald Welte2e4e6a12006-01-12 13:30:04 -080025match(const struct sk_buff *skb,
26 const struct net_device *in,
27 const struct net_device *out,
Patrick McHardyc4986732006-03-20 18:02:56 -080028 const struct xt_match *match,
Harald Welte2e4e6a12006-01-12 13:30:04 -080029 const void *matchinfo,
30 int offset,
31 unsigned int protoff,
Jan Engelhardtcff533a2007-07-07 22:15:12 -070032 bool *hotdrop)
Harald Welte2e4e6a12006-01-12 13:30:04 -080033{
34 int i;
35 static const char nulldevname[IFNAMSIZ];
36 const struct xt_physdev_info *info = matchinfo;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070037 bool ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -080038 const char *indev, *outdev;
39 struct nf_bridge_info *nf_bridge;
40
41 /* Not a bridged IP packet or no info available yet:
42 * LOCAL_OUT/mangle and LOCAL_OUT/nat don't know if
43 * the destination device will be a bridge. */
44 if (!(nf_bridge = skb->nf_bridge)) {
45 /* Return MATCH if the invert flags of the used options are on */
46 if ((info->bitmask & XT_PHYSDEV_OP_BRIDGED) &&
47 !(info->invert & XT_PHYSDEV_OP_BRIDGED))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070048 return false;
Harald Welte2e4e6a12006-01-12 13:30:04 -080049 if ((info->bitmask & XT_PHYSDEV_OP_ISIN) &&
50 !(info->invert & XT_PHYSDEV_OP_ISIN))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070051 return false;
Harald Welte2e4e6a12006-01-12 13:30:04 -080052 if ((info->bitmask & XT_PHYSDEV_OP_ISOUT) &&
53 !(info->invert & XT_PHYSDEV_OP_ISOUT))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070054 return false;
Harald Welte2e4e6a12006-01-12 13:30:04 -080055 if ((info->bitmask & XT_PHYSDEV_OP_IN) &&
56 !(info->invert & XT_PHYSDEV_OP_IN))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070057 return false;
Harald Welte2e4e6a12006-01-12 13:30:04 -080058 if ((info->bitmask & XT_PHYSDEV_OP_OUT) &&
59 !(info->invert & XT_PHYSDEV_OP_OUT))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070060 return false;
61 return true;
Harald Welte2e4e6a12006-01-12 13:30:04 -080062 }
63
64 /* This only makes sense in the FORWARD and POSTROUTING chains */
65 if ((info->bitmask & XT_PHYSDEV_OP_BRIDGED) &&
66 (!!(nf_bridge->mask & BRNF_BRIDGED) ^
67 !(info->invert & XT_PHYSDEV_OP_BRIDGED)))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070068 return false;
Harald Welte2e4e6a12006-01-12 13:30:04 -080069
70 if ((info->bitmask & XT_PHYSDEV_OP_ISIN &&
71 (!nf_bridge->physindev ^ !!(info->invert & XT_PHYSDEV_OP_ISIN))) ||
72 (info->bitmask & XT_PHYSDEV_OP_ISOUT &&
73 (!nf_bridge->physoutdev ^ !!(info->invert & XT_PHYSDEV_OP_ISOUT))))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070074 return false;
Harald Welte2e4e6a12006-01-12 13:30:04 -080075
76 if (!(info->bitmask & XT_PHYSDEV_OP_IN))
77 goto match_outdev;
78 indev = nf_bridge->physindev ? nf_bridge->physindev->name : nulldevname;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070079 for (i = 0, ret = false; i < IFNAMSIZ/sizeof(unsigned int); i++) {
Harald Welte2e4e6a12006-01-12 13:30:04 -080080 ret |= (((const unsigned int *)indev)[i]
81 ^ ((const unsigned int *)info->physindev)[i])
82 & ((const unsigned int *)info->in_mask)[i];
83 }
84
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070085 if (!ret ^ !(info->invert & XT_PHYSDEV_OP_IN))
86 return false;
Harald Welte2e4e6a12006-01-12 13:30:04 -080087
88match_outdev:
89 if (!(info->bitmask & XT_PHYSDEV_OP_OUT))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070090 return true;
Harald Welte2e4e6a12006-01-12 13:30:04 -080091 outdev = nf_bridge->physoutdev ?
92 nf_bridge->physoutdev->name : nulldevname;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070093 for (i = 0, ret = false; i < IFNAMSIZ/sizeof(unsigned int); i++) {
Harald Welte2e4e6a12006-01-12 13:30:04 -080094 ret |= (((const unsigned int *)outdev)[i]
95 ^ ((const unsigned int *)info->physoutdev)[i])
96 & ((const unsigned int *)info->out_mask)[i];
97 }
98
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070099 return ret ^ !(info->invert & XT_PHYSDEV_OP_OUT);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800100}
101
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700102static bool
Harald Welte2e4e6a12006-01-12 13:30:04 -0800103checkentry(const char *tablename,
104 const void *ip,
Patrick McHardyc4986732006-03-20 18:02:56 -0800105 const struct xt_match *match,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800106 void *matchinfo,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800107 unsigned int hook_mask)
108{
109 const struct xt_physdev_info *info = matchinfo;
110
Harald Welte2e4e6a12006-01-12 13:30:04 -0800111 if (!(info->bitmask & XT_PHYSDEV_OP_MASK) ||
112 info->bitmask & ~XT_PHYSDEV_OP_MASK)
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700113 return false;
Patrick McHardy2bf540b2006-12-13 16:54:25 -0800114 if (info->bitmask & XT_PHYSDEV_OP_OUT &&
Patrick McHardy10ea6ac2006-07-24 22:54:55 -0700115 (!(info->bitmask & XT_PHYSDEV_OP_BRIDGED) ||
116 info->invert & XT_PHYSDEV_OP_BRIDGED) &&
117 hook_mask & ((1 << NF_IP_LOCAL_OUT) | (1 << NF_IP_FORWARD) |
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800118 (1 << NF_IP_POST_ROUTING))) {
Patrick McHardy10ea6ac2006-07-24 22:54:55 -0700119 printk(KERN_WARNING "physdev match: using --physdev-out in the "
120 "OUTPUT, FORWARD and POSTROUTING chains for non-bridged "
Patrick McHardy2bf540b2006-12-13 16:54:25 -0800121 "traffic is not supported anymore.\n");
122 if (hook_mask & (1 << NF_IP_LOCAL_OUT))
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700123 return false;
Patrick McHardy10ea6ac2006-07-24 22:54:55 -0700124 }
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700125 return true;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800126}
127
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700128static struct xt_match xt_physdev_match[] = {
129 {
130 .name = "physdev",
131 .family = AF_INET,
132 .checkentry = checkentry,
133 .match = match,
134 .matchsize = sizeof(struct xt_physdev_info),
135 .me = THIS_MODULE,
136 },
137 {
138 .name = "physdev",
139 .family = AF_INET6,
140 .checkentry = checkentry,
141 .match = match,
142 .matchsize = sizeof(struct xt_physdev_info),
143 .me = THIS_MODULE,
144 },
Harald Welte2e4e6a12006-01-12 13:30:04 -0800145};
146
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800147static int __init xt_physdev_init(void)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800148{
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700149 return xt_register_matches(xt_physdev_match,
150 ARRAY_SIZE(xt_physdev_match));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800151}
152
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800153static void __exit xt_physdev_fini(void)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800154{
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700155 xt_unregister_matches(xt_physdev_match, ARRAY_SIZE(xt_physdev_match));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800156}
157
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800158module_init(xt_physdev_init);
159module_exit(xt_physdev_fini);