blob: 44a234ef44396ee5ab7d0d1bb043845297caf8d1 [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>
Harald Welte2e4e6a12006-01-12 13:30:04 -080016
17MODULE_LICENSE("GPL");
18MODULE_AUTHOR("Bart De Schuymer <bdschuym@pandora.be>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080019MODULE_DESCRIPTION("Xtables: Bridge physical device match");
Harald Welte2e4e6a12006-01-12 13:30:04 -080020MODULE_ALIAS("ipt_physdev");
21MODULE_ALIAS("ip6t_physdev");
22
Eric Dumazeteacc17f2009-02-19 11:17:17 +010023static unsigned long ifname_compare(const char *_a, const char *_b, const char *_mask)
24{
25 const unsigned long *a = (const unsigned long *)_a;
26 const unsigned long *b = (const unsigned long *)_b;
27 const unsigned long *mask = (const unsigned long *)_mask;
28 unsigned long ret;
29
30 ret = (a[0] ^ b[0]) & mask[0];
31 if (IFNAMSIZ > sizeof(unsigned long))
32 ret |= (a[1] ^ b[1]) & mask[1];
33 if (IFNAMSIZ > 2 * sizeof(unsigned long))
34 ret |= (a[2] ^ b[2]) & mask[2];
35 if (IFNAMSIZ > 3 * sizeof(unsigned long))
36 ret |= (a[3] ^ b[3]) & mask[3];
37 BUILD_BUG_ON(IFNAMSIZ > 4 * sizeof(unsigned long));
38 return ret;
39}
40
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070041static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +020042physdev_mt(const struct sk_buff *skb, const struct xt_match_param *par)
Harald Welte2e4e6a12006-01-12 13:30:04 -080043{
Eric Dumazet4f1c3b72009-02-18 19:11:39 +010044 static const char nulldevname[IFNAMSIZ] __attribute__((aligned(sizeof(long))));
Jan Engelhardtf7108a22008-10-08 11:35:18 +020045 const struct xt_physdev_info *info = par->matchinfo;
Eric Dumazet4f1c3b72009-02-18 19:11:39 +010046 unsigned long ret;
Harald Welte2e4e6a12006-01-12 13:30:04 -080047 const char *indev, *outdev;
Jan Engelhardta47362a2007-07-07 22:16:55 -070048 const struct nf_bridge_info *nf_bridge;
Harald Welte2e4e6a12006-01-12 13:30:04 -080049
50 /* Not a bridged IP packet or no info available yet:
51 * LOCAL_OUT/mangle and LOCAL_OUT/nat don't know if
52 * the destination device will be a bridge. */
53 if (!(nf_bridge = skb->nf_bridge)) {
54 /* Return MATCH if the invert flags of the used options are on */
55 if ((info->bitmask & XT_PHYSDEV_OP_BRIDGED) &&
56 !(info->invert & XT_PHYSDEV_OP_BRIDGED))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070057 return false;
Harald Welte2e4e6a12006-01-12 13:30:04 -080058 if ((info->bitmask & XT_PHYSDEV_OP_ISIN) &&
59 !(info->invert & XT_PHYSDEV_OP_ISIN))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070060 return false;
Harald Welte2e4e6a12006-01-12 13:30:04 -080061 if ((info->bitmask & XT_PHYSDEV_OP_ISOUT) &&
62 !(info->invert & XT_PHYSDEV_OP_ISOUT))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070063 return false;
Harald Welte2e4e6a12006-01-12 13:30:04 -080064 if ((info->bitmask & XT_PHYSDEV_OP_IN) &&
65 !(info->invert & XT_PHYSDEV_OP_IN))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070066 return false;
Harald Welte2e4e6a12006-01-12 13:30:04 -080067 if ((info->bitmask & XT_PHYSDEV_OP_OUT) &&
68 !(info->invert & XT_PHYSDEV_OP_OUT))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070069 return false;
70 return true;
Harald Welte2e4e6a12006-01-12 13:30:04 -080071 }
72
73 /* This only makes sense in the FORWARD and POSTROUTING chains */
74 if ((info->bitmask & XT_PHYSDEV_OP_BRIDGED) &&
75 (!!(nf_bridge->mask & BRNF_BRIDGED) ^
76 !(info->invert & XT_PHYSDEV_OP_BRIDGED)))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070077 return false;
Harald Welte2e4e6a12006-01-12 13:30:04 -080078
79 if ((info->bitmask & XT_PHYSDEV_OP_ISIN &&
80 (!nf_bridge->physindev ^ !!(info->invert & XT_PHYSDEV_OP_ISIN))) ||
81 (info->bitmask & XT_PHYSDEV_OP_ISOUT &&
82 (!nf_bridge->physoutdev ^ !!(info->invert & XT_PHYSDEV_OP_ISOUT))))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070083 return false;
Harald Welte2e4e6a12006-01-12 13:30:04 -080084
85 if (!(info->bitmask & XT_PHYSDEV_OP_IN))
86 goto match_outdev;
87 indev = nf_bridge->physindev ? nf_bridge->physindev->name : nulldevname;
Eric Dumazeteacc17f2009-02-19 11:17:17 +010088 ret = ifname_compare(indev, info->physindev, info->in_mask);
Harald Welte2e4e6a12006-01-12 13:30:04 -080089
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070090 if (!ret ^ !(info->invert & XT_PHYSDEV_OP_IN))
91 return false;
Harald Welte2e4e6a12006-01-12 13:30:04 -080092
93match_outdev:
94 if (!(info->bitmask & XT_PHYSDEV_OP_OUT))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070095 return true;
Harald Welte2e4e6a12006-01-12 13:30:04 -080096 outdev = nf_bridge->physoutdev ?
97 nf_bridge->physoutdev->name : nulldevname;
Eric Dumazeteacc17f2009-02-19 11:17:17 +010098 ret = ifname_compare(outdev, info->physoutdev, info->out_mask);
99
Eric Dumazet4f1c3b72009-02-18 19:11:39 +0100100 return (!!ret ^ !(info->invert & XT_PHYSDEV_OP_OUT));
Harald Welte2e4e6a12006-01-12 13:30:04 -0800101}
102
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200103static bool physdev_mt_check(const struct xt_mtchk_param *par)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800104{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200105 const struct xt_physdev_info *info = par->matchinfo;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800106
Harald Welte2e4e6a12006-01-12 13:30:04 -0800107 if (!(info->bitmask & XT_PHYSDEV_OP_MASK) ||
108 info->bitmask & ~XT_PHYSDEV_OP_MASK)
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700109 return false;
Patrick McHardy2bf540b2006-12-13 16:54:25 -0800110 if (info->bitmask & XT_PHYSDEV_OP_OUT &&
Patrick McHardy10ea6ac2006-07-24 22:54:55 -0700111 (!(info->bitmask & XT_PHYSDEV_OP_BRIDGED) ||
112 info->invert & XT_PHYSDEV_OP_BRIDGED) &&
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200113 par->hook_mask & ((1 << NF_INET_LOCAL_OUT) |
114 (1 << NF_INET_FORWARD) | (1 << NF_INET_POST_ROUTING))) {
Patrick McHardy10ea6ac2006-07-24 22:54:55 -0700115 printk(KERN_WARNING "physdev match: using --physdev-out in the "
116 "OUTPUT, FORWARD and POSTROUTING chains for non-bridged "
Patrick McHardy2bf540b2006-12-13 16:54:25 -0800117 "traffic is not supported anymore.\n");
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200118 if (par->hook_mask & (1 << NF_INET_LOCAL_OUT))
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700119 return false;
Patrick McHardy10ea6ac2006-07-24 22:54:55 -0700120 }
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700121 return true;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800122}
123
Jan Engelhardtab4f21e2008-10-08 11:35:20 +0200124static struct xt_match physdev_mt_reg __read_mostly = {
125 .name = "physdev",
126 .revision = 0,
127 .family = NFPROTO_UNSPEC,
128 .checkentry = physdev_mt_check,
129 .match = physdev_mt,
130 .matchsize = sizeof(struct xt_physdev_info),
131 .me = THIS_MODULE,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800132};
133
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800134static int __init physdev_mt_init(void)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800135{
Jan Engelhardtab4f21e2008-10-08 11:35:20 +0200136 return xt_register_match(&physdev_mt_reg);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800137}
138
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800139static void __exit physdev_mt_exit(void)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800140{
Jan Engelhardtab4f21e2008-10-08 11:35:20 +0200141 xt_unregister_match(&physdev_mt_reg);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800142}
143
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800144module_init(physdev_mt_init);
145module_exit(physdev_mt_exit);