1 /* Kernel module to match the bridge port in and
2 * out device for IP packets coming into contact with a bridge. */
4 /* (C) 2001-2003 Bart De Schuymer <bdschuym@pandora.be>
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.
11 #include <linux/module.h>
12 #include <linux/skbuff.h>
13 #include <linux/netfilter_bridge.h>
14 #include <linux/netfilter/xt_physdev.h>
15 #include <linux/netfilter/x_tables.h>
17 MODULE_LICENSE("GPL");
18 MODULE_AUTHOR("Bart De Schuymer <bdschuym@pandora.be>");
19 MODULE_DESCRIPTION("iptables bridge physical device match module");
20 MODULE_ALIAS("ipt_physdev");
21 MODULE_ALIAS("ip6t_physdev");
24 match(const struct sk_buff
*skb
,
25 const struct net_device
*in
,
26 const struct net_device
*out
,
27 const struct xt_match
*match
,
28 const void *matchinfo
,
34 static const char nulldevname
[IFNAMSIZ
];
35 const struct xt_physdev_info
*info
= matchinfo
;
37 const char *indev
, *outdev
;
38 const struct nf_bridge_info
*nf_bridge
;
40 /* Not a bridged IP packet or no info available yet:
41 * LOCAL_OUT/mangle and LOCAL_OUT/nat don't know if
42 * the destination device will be a bridge. */
43 if (!(nf_bridge
= skb
->nf_bridge
)) {
44 /* Return MATCH if the invert flags of the used options are on */
45 if ((info
->bitmask
& XT_PHYSDEV_OP_BRIDGED
) &&
46 !(info
->invert
& XT_PHYSDEV_OP_BRIDGED
))
48 if ((info
->bitmask
& XT_PHYSDEV_OP_ISIN
) &&
49 !(info
->invert
& XT_PHYSDEV_OP_ISIN
))
51 if ((info
->bitmask
& XT_PHYSDEV_OP_ISOUT
) &&
52 !(info
->invert
& XT_PHYSDEV_OP_ISOUT
))
54 if ((info
->bitmask
& XT_PHYSDEV_OP_IN
) &&
55 !(info
->invert
& XT_PHYSDEV_OP_IN
))
57 if ((info
->bitmask
& XT_PHYSDEV_OP_OUT
) &&
58 !(info
->invert
& XT_PHYSDEV_OP_OUT
))
63 /* This only makes sense in the FORWARD and POSTROUTING chains */
64 if ((info
->bitmask
& XT_PHYSDEV_OP_BRIDGED
) &&
65 (!!(nf_bridge
->mask
& BRNF_BRIDGED
) ^
66 !(info
->invert
& XT_PHYSDEV_OP_BRIDGED
)))
69 if ((info
->bitmask
& XT_PHYSDEV_OP_ISIN
&&
70 (!nf_bridge
->physindev
^ !!(info
->invert
& XT_PHYSDEV_OP_ISIN
))) ||
71 (info
->bitmask
& XT_PHYSDEV_OP_ISOUT
&&
72 (!nf_bridge
->physoutdev
^ !!(info
->invert
& XT_PHYSDEV_OP_ISOUT
))))
75 if (!(info
->bitmask
& XT_PHYSDEV_OP_IN
))
77 indev
= nf_bridge
->physindev
? nf_bridge
->physindev
->name
: nulldevname
;
78 for (i
= 0, ret
= false; i
< IFNAMSIZ
/sizeof(unsigned int); i
++) {
79 ret
|= (((const unsigned int *)indev
)[i
]
80 ^ ((const unsigned int *)info
->physindev
)[i
])
81 & ((const unsigned int *)info
->in_mask
)[i
];
84 if (!ret
^ !(info
->invert
& XT_PHYSDEV_OP_IN
))
88 if (!(info
->bitmask
& XT_PHYSDEV_OP_OUT
))
90 outdev
= nf_bridge
->physoutdev
?
91 nf_bridge
->physoutdev
->name
: nulldevname
;
92 for (i
= 0, ret
= false; i
< IFNAMSIZ
/sizeof(unsigned int); i
++) {
93 ret
|= (((const unsigned int *)outdev
)[i
]
94 ^ ((const unsigned int *)info
->physoutdev
)[i
])
95 & ((const unsigned int *)info
->out_mask
)[i
];
98 return ret
^ !(info
->invert
& XT_PHYSDEV_OP_OUT
);
102 checkentry(const char *tablename
,
104 const struct xt_match
*match
,
106 unsigned int hook_mask
)
108 const struct xt_physdev_info
*info
= matchinfo
;
110 if (!(info
->bitmask
& XT_PHYSDEV_OP_MASK
) ||
111 info
->bitmask
& ~XT_PHYSDEV_OP_MASK
)
113 if (info
->bitmask
& XT_PHYSDEV_OP_OUT
&&
114 (!(info
->bitmask
& XT_PHYSDEV_OP_BRIDGED
) ||
115 info
->invert
& XT_PHYSDEV_OP_BRIDGED
) &&
116 hook_mask
& ((1 << NF_IP_LOCAL_OUT
) | (1 << NF_IP_FORWARD
) |
117 (1 << NF_IP_POST_ROUTING
))) {
118 printk(KERN_WARNING
"physdev match: using --physdev-out in the "
119 "OUTPUT, FORWARD and POSTROUTING chains for non-bridged "
120 "traffic is not supported anymore.\n");
121 if (hook_mask
& (1 << NF_IP_LOCAL_OUT
))
127 static struct xt_match xt_physdev_match
[] __read_mostly
= {
131 .checkentry
= checkentry
,
133 .matchsize
= sizeof(struct xt_physdev_info
),
139 .checkentry
= checkentry
,
141 .matchsize
= sizeof(struct xt_physdev_info
),
146 static int __init
xt_physdev_init(void)
148 return xt_register_matches(xt_physdev_match
,
149 ARRAY_SIZE(xt_physdev_match
));
152 static void __exit
xt_physdev_fini(void)
154 xt_unregister_matches(xt_physdev_match
, ARRAY_SIZE(xt_physdev_match
));
157 module_init(xt_physdev_init
);
158 module_exit(xt_physdev_fini
);